上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 36 下一页
摘要: 相信做设计的朋友肯定都知道dribbble.com,它是一个非常棒的设计师分享作品的网站,全世界数以万计的设计高手和行家都在这个网站上分享自己的作品,当然,如果你常在上面闲逛的话,经常得到一些免费的好东西。在今天的这篇jQuery教程中,我们将使用jQuery的几个插件来开发一个响应式的瀑布流应用,... 阅读全文
posted @ 2014-04-18 16:44 leejersey 阅读(619) 评论(0) 推荐(0) 编辑
摘要: Javascript刷新页面的几种方法:1 history.go(0) 2 location.reload() 3 location=location 4 location.assign(URL) 5 document.execCommand('Refresh',fal... 阅读全文
posted @ 2014-04-17 11:39 leejersey 阅读(1076) 评论(0) 推荐(0) 编辑
摘要: byzhangxinxufromhttp://www.zhangxinxu.com本文地址:http://www.zhangxinxu.com/wordpress/?p=2357一、现象描述真正意义上的inline-block水平呈现的元素间,换行显示或空格分隔的情况下会有间距,很简单的个例子: 间... 阅读全文
posted @ 2014-04-17 09:39 leejersey 阅读(600) 评论(1) 推荐(1) 编辑
摘要: 阅读全文
posted @ 2014-04-16 09:24 leejersey 阅读(314) 评论(0) 推荐(0) 编辑
摘要: 让连续的英文数字字符换行显示word-break: break-all;让单行文字超出的时候使用点点点表示white-space: nowrap; overflow: hidden; text-overflow: ellipsis;table-layout: fixed的作用在于,让表格布局固定,也... 阅读全文
posted @ 2014-04-16 09:05 leejersey 阅读(389) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2014-04-15 14:28 leejersey 阅读(607) 评论(0) 推荐(0) 编辑
摘要: jQuery ScrollPagination plugin 是一个jQuery 实现的支持无限滚动加载数据的插件。地址:http://andersonferminiano.com/jqueryscrollpagination/他的demo下载:http://andersonferminiano.c... 阅读全文
posted @ 2014-04-15 13:37 leejersey 阅读(553) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2014-04-15 09:05 leejersey 阅读(1375) 评论(0) 推荐(0) 编辑
摘要: js的函数调用会免费奉送两个而外的参数就是 this 和 arguments 。arguments是参数组,他并不是一个真实的数组,但是可以使用.length方法获得长度。书上有说4中调用方式:方法调用模式函数调用模式构造器调用模式apply调用模式下面我们来看看一些实例更好理解。1:方法调用模式。... 阅读全文
posted @ 2014-04-14 09:18 leejersey 阅读(196504) 评论(3) 推荐(4) 编辑
摘要: css代码如下:a, a:link, a:visited { color:#4188FB; }a:active, a:focus, a:hover { color:#FFCC00; }js代码如下:var link_col = $("a:link").css("color");alert(link_col); // returns rgb(65, 136, 251)jquey貌似设置颜色,使用的是rgb格式的。用以下这个function,把rgb转成“#xxxx”(HEX )格式。var rgbString = "rgb(0, 70, 255) 阅读全文
posted @ 2014-04-13 15:50 leejersey 阅读(12832) 评论(1) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 36 下一页