jQuery实现手风琴效果(蒙版)

2022-01-13,,,

这篇文章主要介绍了jQuery实现手风琴效果,附带蒙版特效,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了jQuery实现手风琴效果的具体代码,供大家参考,具体内容如下

代码:

   Document *{ padding:0; margin:0; } ul,ol{ list-style: none; } .box{ width: 900px; height: 300px; border:1px solid #333; margin:50px auto; position: relative; overflow: hidden; } .box ul li{ position: absolute; width: 560px; height: 300px; top:0px; } .box ul li.no0{ left:0px; } .box ul li.no1{ left:180px; } .box ul li.no2{ left:360px; } .box ul li.no3{ left:540px; } .box ul li.no4{ left:720px; } /*蒙版效果*/ .mask{ position: absolute; width: 560px; height: 300px; top:0; left: 0; background-color: rgba(0,0,0,.5); }   

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持本站。

以上就是jQuery实现手风琴效果(蒙版)的详细内容,更多请关注本站其它相关文章!

《jQuery实现手风琴效果(蒙版).doc》

下载本文的Word格式文档,以方便收藏与打印。