最新回答 / 斌2233
.photo .side-back{display: none;}这么写是不对的 改成.photo, .side-back{display: none;}
2015-12-23
最赞回答 / 李晓健
为了让warp 垂直居中,因为他先用定位设置了一个top:50%; 这样的话这个图片就会下降到50%的调度,也就是warp 的上边沿正好在他原来的中线上,这时就偏下了,因为warp的高度是600,这600应该在上下部分各占一半,也就是300px,但是因为top:50%, 所以这600全到了下边,想居中就得往上移动300,这样才能保证上下部分各300,所以就有了 margin-top:-300px
2015-12-20
最赞回答 / 木子舟义
function g(selector){ return selector.substring(0, 1) == '.' ? document.getElementsByClassName(selector.substring(1)) : document.getElementById(selector.substring(1)); }
2015-12-04
最新回答 / nmeng2015
replace是字符串方法,可以连用。跟jQuery里面的对象在一行里面加多个方法性质一样的。replace('{{index}}',s) .replace('{{img}}',data[s].img) .replace('{{caption}}',data[s].caption).replace('{{desc}}',data[s].desc);这个是写在for in代码块里面的。for(var s in data){}表示要用s来遍历data这个数组对象s就是索引,data[s]表示data数组索引为...
2015-11-15
最赞回答 / fight_2015
自问自答吧,其实是自己拼错了一个单词,在83行-webkit-transform-style:presereve-3d;应该是-webkit-transform-style:preserve-3d;
2015-10-27