1234567891011121314151617181920212223242526272829 |
- $(document).click(function(){
- $('.nav-list').removeClass('open')
- })
- $('.nav-menu,.nav-list').click(function(e){e.stopPropagation()})
- $('nav').find('.nav-menu').click(function(e){
- $('.nav-list').toggleClass('open')
- })
- $(".fullSlide").hover(function(){
- $(this).find(".prev,.next").stop(true, true).fadeTo("show", 0.5)
- },
- function(){
- $(this).find(".prev,.next").fadeOut()
- });
- $(".fullSlide").slide({
- titCell: ".hd ul",
- mainCell: ".bd ul",
- effect: "fold",
- autoPlay: true,
- autoPage: true,
- trigger: "click",
- startFun: function(i) {
- var curLi = jQuery(".fullSlide .bd li").eq(i);
- if ( !! curLi.attr("_src")) {
- curLi.css("background-image", curLi.attr("_src")).removeAttr("_src")
- }
- }
- });
|