Mar172012
几种CSS按钮样式2
/*/// BUTTONS ///*/
.pt_btn {
font-size: 12px;
font-weight: bold;
padding: 8px 12px;
margin: 0 10px 10px 0;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: 0 2px 3px rgba(0,0,0,0.1);
-moz-box-shadow: 0 2px 3px rgba(0,0,0,0.1);
box-shadow: 0 2px 3px rgba(0,0,0,0.1);
cursor...阅读全文
抢沙发
Mar102012
几种CSS按钮样式
/* Buttons */
.button {
height: 28px;
padding: 0 10px 0 10px;
line-height: 28px;
float: left;
display: block;
margin: 0 10px 10px 0;
-webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.08), inset 0px 1px 0 0px rgba(255, 255, 255, 0.3);
-moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.08), inset 0px 1px 0 0px rgba(255, 255, 255...阅读全文
Feb222012
60+ Fresh Examples of Modern Single-Page-Website Designs
原文链接:http://www.instantshift.com/2012/01/23/60-fresh-examples-of-modern-single-page-website-designs/
As you’ve already seen in our previous posts about Single Page Website Designs that showcasing your work in single page design is a hot trend now days. It’s kind of ironic to see what designers can do with single pages as modern age designers love to exper...阅读全文
作者:xqsapper | 分类:Showcases | 阅读:1302 views |
Feb222012
50+ Creative Examples of Websites Designed With HTML5
原文链接:http://www.instantshift.com/2012/01/31/50-creative-examples-of-websites-designed-with-html5/
The web is constantly evolving. New and creative websites are being created every day, pushing the limitations of HTML in every direction. HTML4 has been around for nearly a decade and now its time to move forward. To give authors more flexibility and interop...阅读全文
Oct222011
Setting up authentication in asp.net MVC
I wanted to setup user authentication in asp.net MVC, and I wanted it to tie in with the built-in IIdentity and IPrincipal support that is already in asp.net, but I did not want to have to setup asp.net membership services. I wanted to have my own user objects, and I wanted to save/retrieve them through my user repository just like my other domain objects. All...阅读全文
Oct082011
CSS3 Media Queries
CSS2 allows you to specify stylesheet for specific media type such as screen or print. Now CSS3 makes it even more efficient by adding media queries. You can add expressions to media type to check for certain conditions and apply different stylesheets. For example, you can have one stylesheet for large displays and a different stylesheet specifically for mobil...阅读全文
Aug142011
JQuery返回顶部
<script type="text/javascript">
var scrolltotop={
//startline: Integer. Number of pixels from top of doc scrollbar is scrolled before showing control
//scrollto: Keyword (Integer, or "Scroll_to_Element_ID"). How far to scroll document up when control is clicked on (0=top).
setting: {startline:350, scrollto: 0, scrollduration:800, fadedurat...阅读全文
Aug132011
Five Useful Interactive CSS/jQuery Techniques Deconstructed
With the wide variety of CSS3 and JavaScript techniques available today, it’s easier than ever to create unique interactive websites that delight visitors and provide a more engaging user experience.
In this article, we’ll walk through five interactive techniques that you can start using right now. We’ll cover:
Animated text effects,
Animated images without G...阅读全文
Aug132011
Useful Resources, Tools and Services for Web Designers
Productivity is a crucial asset of professional Web designers and developers. We regularly look for new resources, tools and services to make the search of these ever-growing techniques easier. Once we have a reasonable number of useful resources, we prepare them in a handy overview for your convenience. In this post we present some of the useful resources and...阅读全文
Aug122011
ZURB JavaScript Annotation Plugin
Use ZURB’s Javascript plugin to easily add and save annotations
Note: This demo will blow your mind in all browsers.
Download Plugin
Annotate Nutmeg (click the dog)
OK, this is just silly, but what’s really silly is how simple this was to implement with our annotation plugin. Just link up jQuery (1.2.3 or higher) and our plugin.
<script sr...阅读全文