简单实现jQuery手风琴效果
(编辑:jimmy 日期: 2024/11/15 浏览:3 次 )
本文实例为大家分享了jQuery实现手风琴效果的具体代码,供大家参考,具体内容如下
js代码:
<script type="text/javascript" src="/UploadFiles/2021-04-02/jquery-3.0.0.js">css代码:
.li_list { width: 100px; height: 300px; list-style: none; float: left; overflow: hidden; } .li_list img { width: 100%; height: 100%; } .divbg { width: 600px; height: 300px; background: rgba(230, 0, 0, 0.5); text-align: center; line-height: 300px; float: left; } .divbg span { display: block; width: 100px; height: 300px; float: left; } .div1 { width: 500px; height: 300px; float: left; } .mo{ width: 600px; }html代码:
<ul class="ul_list"> <li class="li_list"> <div class="divbg"> <span>萌宠</span> <div class="div1"> <img src="/UploadFiles/2021-04-02/0.jpg">以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
下一篇:JavaScript中Hoisting详解 (变量提升与函数声明提升)