摘要: 比较有价值的网址 http://lib.csdn.net/ http://www.runoob.com/ http://www.jqueryfuns.com/ http://www.93diy.com/ http://jquery.cuishifeng.cn/ https://github.com/ 阅读全文
posted @ 2016-04-21 13:44 雪明瑶 阅读(119) 评论(0) 推荐(0) 编辑
摘要: *{ padding:0px; margin:0px;} .box{ width:1000px; background:#ccc; margin:0 auto; overflow:hidden;} .main{ width:770px; height:2000px; background:#000; float:left;} .sub{ wid... 阅读全文
posted @ 2016-04-20 13:55 雪明瑶 阅读(1027) 评论(0) 推荐(0) 编辑
摘要: //图片滚动 roll("#inner"); roll("#inner2"); function roll(oneRoll){ var step = 0; var count = $(""+oneRoll+" li").length; var $inner = $(""+oneRoll+""); v 阅读全文
posted @ 2016-04-19 16:10 雪明瑶 阅读(2494) 评论(0) 推荐(0) 编辑
摘要: 这个效果刚开始只想到了事件委托,jq里的delegate(selector,[type],[data],fn),可是做不出来。后来用了 阅读全文
posted @ 2016-04-15 19:08 雪明瑶 阅读(407) 评论(0) 推荐(0) 编辑
摘要: 网上找的,留着备用吧。 阅读全文
posted @ 2016-04-15 18:56 雪明瑶 阅读(745) 评论(0) 推荐(2) 编辑
摘要: 这个问题经常遇到 1、单行文本溢出显示省略号(…) text-overflow:ellipsis 部分浏览器还需要加宽度width属性 overflow:hidden;text-overflow:ellipsis;white-space:nowrap; 2、多行文本溢出显示省略号,WebKit浏览器 阅读全文
posted @ 2016-04-14 18:36 雪明瑶 阅读(1750) 评论(0) 推荐(0) 编辑
摘要: 元素拥有默认的white-space:normal,不换行是white-space:nowrap.但是遇到下面这种情况它把td撑开了 解决方法(以IE,chrome,FF为测试浏览器): { word-break:break-all; /*支持IE,chrome,FF不支持*/ word-wrap: 阅读全文
posted @ 2016-04-14 13:38 雪明瑶 阅读(144) 评论(0) 推荐(0) 编辑
摘要: 遇到的第一个问题,点击第一行用toggle实现背景的变换,需要在toggle函数里面判断,当下面显示的时候是一个状态,下面不显示的时候是另一个状态,我用了 阅读全文
posted @ 2016-04-13 19:25 雪明瑶 阅读(2106) 评论(0) 推荐(0) 编辑
摘要: 第一类: 刚开始的思路是:让上面的选中的选项背景变成白色,让下面的层position:absolute;z-index:-1;top:1px,就能盖得上上面的横线。实践证明,这样是能盖得上,但是单选按钮不能点了。 正确的思路应该是:上面的选项切换大层应该使用定位position:relative,里 阅读全文
posted @ 2016-04-13 19:16 雪明瑶 阅读(619) 评论(0) 推荐(0) 编辑
摘要: html,body{overflow-x:hidden;} ul,li{list-style: none;} .nav{width:100%; height: 26px; overflow: hidden;} .nav li{width: 100px; text-align: center; height: 26px; line-height: 2... 阅读全文
posted @ 2016-04-12 15:36 雪明瑶 阅读(546) 评论(0) 推荐(0) 编辑