$(function () { // // 回到顶部 // $('.ul-fd:nth-last-child(1)').click(function () { // $("html,body").stop().animate({ scrolltop: 0 }, 1000); // }) // 底部网站下拉 $(".ft-sel-title").click(function () { $(this) .siblings(".ft-nd") .stop() .slidetoggle() .parents(".ft-sel") .siblings() .find(".ft-nd") .slideup(); }); // 导航二级 $(".ul-nhead>li").mouseover(function () { $(this).find("ul").stop(true).slidedown(100); console.log('dd') }); $(".ul-nhead>li").mouseout(function () { $(this).find("ul").stop(true).slideup(100); }); }); // tab切换 function clickshow(el, act, par, showcont) { $(el).click(function () { $(this).addclass(act).siblings().removeclass(act); var index = $(this).index(); $(this).parents(par).find(showcont).hide(); $(this).parents(par).find(showcont).eq(index).fadein(); }); } // 图片弹出 function ry(el, img) { $(el).click(function () { $(this).find(img).clone().appendto(".ry-tc-pic"); $(".ry-tc").fadein(); $(".ry-tc-pic>img").css({ transform: "scale(1)" }); // var wid = $(this).width() // var height = $(this).height() // console.log(wid,height) // $('.ry-tc-cont').removeclass('m-height') // if( height > wid ){ // $('.ry-tc-cont').addclass('m-height') // } }); $(".ry-tc").click(function () { $(this).fadeout(); $(".ry-tc-pic>img").css({ transform: "scale(0)" }); settimeout(() => { $(".ry-tc-pic").find("img").remove(); }, 500); }); $(".ry-tc-pic").click(function () { window.event ? (window.event.cancelbubble = true) : e.stoppropagation(); }); }