怎样安装Dreamweaver的jquery扩展,我们通常会用dreamweaver这个网页设计软件来编写网页前台代码,在编写代码时会经常出现下拉的菜单供我们选择,为我们编写代码节省了很多的时间。这样......
2023-03-17 342 JQUERY DREAMWEAVER
jQuery鼠标悬停图片自动左右切换
新建html文档。
书写hmtl代码。
div class="accordion">
ul>
li class="item1 active">a href="">/a>/li>
li class="item2">a href="">/a>/li>
li class="item3">a href="">/a>/li>
li class="item4">a href="">/a>/li>
li class="item5">a href="">/a>/li>
/ul>
/div>
书写css代码。
.related a img { max-width: 100%; opacity: 0.8; border-radius: 4px; }
.related a:hover img, .related a:active img { opacity: 1; }
.related h3 { font-family: "Microsoft YaHei", sans-serif; }
.related a h3 { font-weight: 300; margin-top: 0.15em; color: #fff; }
.icon-htmleaf-home-outline:before { content: "e5000"; }
.icon-htmleaf-arrow-forward-outline:before { content: "e5001"; }
@media screen and (max-width: 50em) {
.htmleaf-header { padding: 3em 10% 4em; }
.htmleaf-header h1 { font-size: 2em; }
}
@media screen and (max-width: 40em) {
.htmleaf-header h1 { font-size: 1.5em; }
}
@media screen and (max-width: 30em) {
.htmleaf-header h1 { font-size: 1.2em; }
}
书写并添加js代码。
script src="lib/jquery-1.11.1.min.js">/script>
script src="js/jquery.accordion.js">/script>
script type="text/javascript">
$(document).ready(function(){
$(".accordion").accordion();
});
/script>
代码整体结构。
查看效果。
以上方法由办公区教程网编辑摘抄自百度经验可供大家参考!
标签: JQUERY
相关文章
怎样安装Dreamweaver的jquery扩展,我们通常会用dreamweaver这个网页设计软件来编写网页前台代码,在编写代码时会经常出现下拉的菜单供我们选择,为我们编写代码节省了很多的时间。这样......
2023-03-17 342 JQUERY DREAMWEAVER
jQuery MiniUI 快速入门,前段时间由于工作的原因接触到MiiUI。感觉MiiUI很强大,使用起来也很舒服。下面我就带领大家快速的使用MiiUI。MiiUI-专业WeUI控件库它能缩短开发时......
2023-03-17 330 JQUERY
怎么使用JQuery Mobile开发移动网站,现在越来越多的人用网站来做手机a,这样的好处是,可以做一个网站,基本上可以做到多个平台adroid,io,w,都可以使用。这里使用JQueryMoile......
2023-03-17 374 JQUERY