$(function() { var accordion = function(el, multiple) { this.el = el || {}; this.multiple = multiple || false; // variables privadas var links = this.el.find('.link'); // evento links.on('click', {el: this.el, multiple: this.multiple}, this.dropdown) } accordion.prototype.dropdown = function(e) { var $el = e.data.el; $this = $(this), $next = $this.next(); $next.slidetoggle(); $this.parent().toggleclass('open'); if (!e.data.multiple) { $el.find('.submenu').not($next).slideup().parent().removeclass('open'); }; } var accordion = new accordion($('.accordion'), false); }); /*内页二级栏目*/ $(function () { $(".icon-menu").click(function () { if ($(".sjdnav").hasclass("sjdnavhide")) { var iphonenav = $(".sjdnav").find("li").length; $(".sjdnav").animate({ "height": (iphonenav * 45) + "px" }, 600); $(".sjdnav").removeclass("sjdnavhide") } else { $(".sjdnav").animate({ "height": "0px" }, 600); $(".sjdnav").addclass("sjdnavhide") } }) }); /*手机导航*/ $(document).ready(function(){ $(".cltit").click(function(){ $(".tab").slidetoggle("slow"); }); }); /*内页栏目*/ $(document).ready(function(){ $(".nul li").hover(function(){ $(this).find("ul").slidedown("slow"); },function(){ $(this).find("ul").slideup("fast"); }); }); /*pc端导航*/ $(document).ready(function() { $(".ru li").click(function(){ $(this).addclass("qiu").siblings().removeclass("qiu"); }); }); /*点击无序列表添加样式*/ /*$(window).scroll(function () { if ($(this).scrolltop() >= 0) { $(".header").css("background","rgba(0, 0, 0, 0.48)"); } else { $(".header").css("background","rgba(0, 0, 0, 0)"); } })*/ $(function(){ $(".top").click(function() { $("html,body").animate({scrolltop:0}, 600); }); }); $(document).ready(function(){ $(".fdj").click(function(){ $(".search").toggle(); }); });