jQuery实现手风琴效果(蒙版)
本文实例为大家分享了jQuery实现手风琴效果的具体代码,供大家参考,具体内容如下
代码:
Document *{ padding:0; margin:0; } ul,ol{ list-style:none; } .box{ width:900px; height:300px; border:1pxsolid#333; margin:50pxauto; position:relative; overflow:hidden; } .boxulli{ position:absolute; width:560px; height:300px; top:0px; } .boxulli.no0{ left:0px; } .boxulli.no1{ left:180px; } .boxulli.no2{ left:360px; } .boxulli.no3{ left:540px; } .boxulli.no4{ left:720px; } /*蒙版效果*/ .mask{ position:absolute; width:560px; height:300px; top:0; left:0; background-color:rgba(0,0,0,.5); }