/* * 基于JQuery开发的网站功能脚本,适用于Finch UI框架开发的主题或插件 * 作者:星岚工作室(QQ:914466480) * 网站:https://www.finchui.com/ */ // 导航栏模块 $(document).ready(function () { var A = location.href, url1 = $(".breadcrumb a:eq(1)").attr("href"), url2 = $(".breadcrumb a:eq(2)").attr("href"), url3 = $(".breadcrumb a:eq(3)").attr("href"), url4 = $(".breadcrumb a:eq(4)").attr("href"), url5 = $(".breadcrumb a:eq(5)").attr("href"), urll = $(".breadcrumb a:last").attr("href"), Main = $(document).width(); if (Main <= 1260) { // 移动端 if ($(".nav li a").each(function () { ($(this).attr("href") != A && $(this).attr("href") != url1 && $(this).attr("href") != url2 && $(this).attr("href") != url3 && $(this).attr("href") != url4 && $(this).attr("href") != url5) || ( $(this).parent().addClass("current-li"), $(this).parent().parents('.current-li').children(".nav-show").addClass("nav-hide"), $(this).parent().siblings().removeClass("current-li") ), $(this).parent().find("li").length > 0 && $(this).after(''); })); $(".nav li .nav-show").click(function () { $(this).siblings("ul").slideToggle(); $(this).parent().siblings().find("ul").slideUp(); $(this).toggleClass("nav-hide"); $(this).parent().siblings().find(".nav-show").removeClass("nav-hide"); }); } else { // PC版 if ($(".nav li a").each(function () { ($(this).attr("href") != A && $(this).attr("href") != url1 && $(this).attr("href") != url2 && $(this).attr("href") != url3 && $(this).attr("href") != url4 && $(this).attr("href") != url5) || ( $(this).parent().addClass("current-li"), $(this).parent().siblings().removeClass("current-li") ), $(this).parent().find("li").length > 0 && $(this).addClass("nav-show"); }) ); $(".nav li").hover( function () { $(this).find("ul:first").slideDown("fast").css({ display: "block" }); $(this).find("li").length > 0 && $(this).find(".nav-show").addClass("nav-hide"); }, function () { $(this).find("ul:first").slideUp("fast").css({ display: "none" }); $(this).find("li").length > 0 && $(this).find(".nav-show").removeClass("nav-hide"); } ); $(".nav li ul").hover( function () { $(this).parent().addClass("current-li"); }, function () { if ($(this).siblings().attr("href") != A && $(this).siblings().attr("href") != url1 && $(this).siblings().attr("href") != url3 && $(this).siblings().attr("href") != url4 && $(this).siblings().attr("href") != url5) { $(this).parent().removeClass("current-li"); } } ); } //判断当前网址链接高亮显示 $(".nav a").each(function () { if (this.href == A.toString().split("#")[0]) { $(this).addClass("current"); $(this).siblings(".nav-show").addClass("nav-hide"); return false; }; if ($(this).attr("href") == urll) { $(this).addClass("current"); $(this).siblings(".nav-show").addClass("nav-hide"); } }); }); // 按钮 $(document).ready(function () { $("#mnav").click(function () { $(".nav").fadeToggle(500); $(".search").fadeOut(); $(".login").fadeOut(); }); $("#msearch").click(function () { $(".search").fadeToggle(500); $(".nav").fadeOut(); $(".login").fadeOut(); }); $("#muser").click(function () { $(".login").fadeToggle(500); $(".nav").fadeOut(); $(".search").fadeOut(); }); $(".f-show").click(function () { $(".freecatalog").animate({ left: '0' }, "1000"); $(this).parent().animate({ left: '199px' }, "1000"); $(".freecatalog-button").addClass("f-hide-icon") $(this).fadeOut(); $(".f-hide").show(); }); $(".f-hide").click(function () { $(".freecatalog").animate({ left: '-200px' }, "1000"); $(this).parent().animate({ left: '0' }, "1000"); $(".freecatalog-button").removeClass("f-hide-icon") $(this).fadeOut(); $(".f-show").show(); }); var A = $(document).width(); if (A <= 1260) { $(".main").click(function () { $(".nav").fadeOut(); $(".search").fadeOut(); $(".login").fadeOut(); }); // 开启反馈 $("#app-feedback").click(function () { $("#feedback-box").fadeToggle(500); $(".nav").fadeOut(); $(".search").fadeOut(); $(".login").fadeOut(); }); } else { // 开启反馈 $("#app-feedback").click(function () { $("#feedback-box").fadeToggle(500); }); } // 关闭反馈 $("#hide-feedback").click(function () { $("#feedback-box").fadeOut(); }); }); // 网站目录 $(document).ready(function () { var A = location.href, url1 = $(".breadcrumb a:eq(1)").attr("href"), url2 = $(".breadcrumb a:eq(2)").attr("href"), url3 = $(".breadcrumb a:eq(3)").attr("href"), url4 = $(".breadcrumb a:eq(4)").attr("href"), url5 = $(".breadcrumb a:eq(5)").attr("href"), urll = $(".breadcrumb a:last").attr("href"); if ($(".freecatalog a").each(function () { ($(this).attr("href") != A && $(this).attr("href") != url1 && $(this).attr("href") != url2 && $(this).attr("href") != url3 && $(this).attr("href") != url4 && $(this).attr("href") != url5) || ( $(this).parent().addClass("current-li"), $(this).parent().parents('.current-li').children(".sub-show").addClass("sub-hide"), $(this).parent().siblings().removeClass("current-li") ), $(this).parent().find("li").length > 0 && $(this).after(''); }) ); $(".freecatalog .sub-show").click(function () { $(this).siblings("ul").slideToggle(); $(this).parent().siblings().find("ul").slideUp(); $(this).toggleClass("sub-hide"); $(this).parent().siblings().find(".sub-show").removeClass("sub-hide"); }); $(".freecatalog a").each(function () { if (this.href == A.toString().split("#")[0]) { $(this).addClass("current"); $(this).siblings(".sub-show").addClass("sub-hide"); } if ($(this).attr("href") == urll) { $(this).addClass("current"); $(this).siblings(".sub-show").addClass("sub-hide"); } }); }); // 判断白天黑夜 $(document).ready(function () { var today = new Date(), hours = today.getHours(), day = $("#day"), night = $("#night"), dan = $.cookie('daynight'); if ($(day).length > 0 && $(night).length > 0) { if (dan == 100) { // 当前是白天 day.hide(); night.show(); $("body").removeClass("fuinight"); } else if (dan == 200) { // 当前是夜晚 night.hide(); day.show(); $("body").addClass("fuinight"); } else if (hours >= 6 && hours <= 18) { // 当前是白天 day.hide(); night.show(); } else { // 当前是晚上 day.show(); night.hide(); $("body").addClass("fuinight"); $.cookie('daynight', '200', { expires: 1, path: '/' }); } day.click(function () { // 开启白天 $(this).hide(); //隐藏 night.show(); //显示 $("body").removeClass("fuinight"); $.cookie('daynight', '100', { expires: 1, path: '/' }); }); night.click(function () { // 开启夜晚 $(this).hide(); day.show(); $("body").addClass("fuinight"); $.cookie('daynight', '200', { expires: 1, path: '/' }); }); } }); // 网站分类 $(document).ready(function () { var A = location.href, url1 = $(".breadcrumb a:eq(1)").attr("href"), url2 = $(".breadcrumb a:eq(2)").attr("href"), url3 = $(".breadcrumb a:eq(3)").attr("href"), url4 = $(".breadcrumb a:eq(4)").attr("href"), url5 = $(".breadcrumb a:eq(5)").attr("href"), urll = $(".breadcrumb a:last").attr("href"); if ($("#divCatalog a").each(function () { ($(this).attr("href") != A && $(this).attr("href") != url1 && $(this).attr("href") != url2 && $(this).attr("href") != url3 && $(this).attr("href") != url4 && $(this).attr("href") != url5) || ( $(this).parent().addClass("current-li"), $(this).parent().parents('.current-li').children(".sub-show").addClass("sub-hide"), $(this).parent().siblings().removeClass("current-li") ), $(this).parent().find("li").length > 0 && $(this).after(''); }) ); $("#divCatalog .sub-show").click(function () { $(this).siblings("ul").slideToggle(); $(this).parent().siblings().find("ul").slideUp(); $(this).toggleClass("sub-hide"); $(this).parent().siblings().find(".sub-show").removeClass("sub-hide"); }); $("#divCatalog a").each(function () { if (this.href == A.toString().split("#")[0]) { $(this).addClass("current"); $(this).siblings(".sub-show").addClass("sub-hide"); return false; } if ($(this).attr("href") == urll) { $(this).addClass("current"); $(this).siblings(".sub-show").addClass("sub-hide"); } }); }); //判断当前网址链接高亮显示 $(document).ready(function () { var A = location.href, urll = $(".breadcrumb a:last").attr("href"); // $(".subcategorys a").each(function() { // if (this.href == A.toString().split("#")[0]) { // $(this).addClass("current"); // return false; // } // }); if ($(".subcategorys a").each(function () { ($(this).attr("href") != A && $(this).attr("href") != urll) || ( $(this).addClass("current")); }) ); }); // 侧栏跟随 (function () { window.scrollBox = function (a) { var A = this; A.box = a.box || ".scrollBox"; A.top = a.top || "0px"; A.minWidth = a.minWidth || 0; A.bottom = a.bottom || 0; A.space = a.space || 20; A.transition = a.transition == false ? false : true; if (a.maxHeightBox) { A.maxHeight = $(a.maxHeightBox).offset().top + $(a.maxHeightBox).height(); } A.init(); }; scrollBox.prototype = { init: function () { var B = this, G = window.innerWidth, A = window.innerHeight; (boxT = $(B.box).offset().top), (boxH = $(B.box).height()), (boxMT = 0); $(window).resize(function () { B.throttle(c, 200, 3000)(); }); if (G >= B.minWidth) { if (B.transition) { $(B.box).css("transition", "margin 0.1s ease-out"); $(window).scroll(function () { B.throttle(a, 200, 3000)(); }); } else { $(window).scroll(function () { a(); }); } a(); } function c() { G = window.innerWidth; A = window.innerHeight; boxT = $(B.box).offset().top - parseFloat($(B.box).css("margin-top")); boxH = $(B.box).height(); } function a() { if (G >= B.minWidth) { if (B.maxHeight < boxT + boxH + B.space) { return false; } var C = $(window).scrollTop(); if (boxH > A - B.top - B.space * 2) { if (C <= boxT - B.top - B.space) { $(B.box).css({ "margin-top": "0" }); } else { if (B.maxHeight) { if (C > B.maxHeight + B.space - A) { $(B.box).css({ "margin-top": B.maxHeight - boxT - boxH + "px" }); return false; } } var D = C - boxT - (boxH + B.bottom + B.space - A); if (D < boxMT) { if (C < $(B.box).offset().top - B.top - B.space) { boxMT = C - boxT + B.top + B.space; } } else { boxMT = D; } $(B.box).css({ "margin-top": boxMT + "px" }); } } else { if (C <= boxT - B.top - B.space) { $(B.box).css({ "margin-top": "0" }); } else { if (B.maxHeight) { if (C > B.maxHeight - boxH - B.top - B.space) { return false; } } var D = C - boxT + B.top + B.space; $(B.box).css({ "margin-top": D + "px" }); } } } } }, throttle: function (c, A, a) { var B = null; var G = null; return function () { var D = +new Date(); !G && (G = D); if (a && D - G > a) { c(); G = D; } else { clearTimeout(B); B = setTimeout(function () { c(); G = null; }, A); } }; } }; })(); // 标签特效2 // $(document).ready(function() { // var tagcloud_a = $("#hottag ul li a"); // tagcloud_a.each(function(){ // var x = 8; // var y = 0; // var rand = parseInt(Math.random() * (x - y + 1) + y); // $(this).addClass("tag_c"+rand); // }); // }) //控制网页字体大小 $(document).ready(function () { var b_size = $.cookie('a_size'); if (b_size == null || b_size == "") { $.cookie('a_size', '16px', { expires: 7, path: '/' }); var num = 16; } else { var num = parseInt(b_size); } $("#enlarge").click(function () { num++; $(".article").css("font-size", num + 'px'); $(".article table").css("font-size", num + 'px'); var size = $(".article").css("font-size"); $.cookie('a_size', size, { expires: 7, path: '/' }); }); $("#narrow").click(function () { num--; $(".article").css("font-size", num + 'px'); $(".article table").css("font-size", num + 'px'); var size = $(".article").css("font-size"); $.cookie('a_size', size, { expires: 7, path: '/' }); }) }) $(document).ready(function () { var b_size = $.cookie('a_size'); $(".article").css("font-size", b_size); }) //判断搜索框显示的显示内容 $(document).ready(function () { $(".search input").focus(function () { $(this).parent().children(".clearsearch").show(); }); $(".search input").blur(function () { if ($(this).val() == '') { $(this).parent().children(".clearsearch").hide(); } }); $(".clearsearch").click(function () { $(this).parent().find('input').val(''); $(this).hide(); }); }) //应用属性 $(document).ready(function () { $(".appattr span").each(function () { $(this).parent().css({ "margin-top": "10px"}); }); }); /*点击复制代码*/ // function codetype(){ // const range = document.createRange(); // range.selectNode(document.getElementById('copy_content')); // const selection = window.getSelection(); // if(selection.rangeCount > 0) selection.removeAllRanges(); // selection.addRange(range); // document.clone('copy'); // alert("复制成功!"); // } // 给第一个li添加act_active $(document).ready(function () { $(".ranking-tab").each(function () { var $firstBtn = $(this).children("li").first(); // 或者 $li.eq(0) $firstBtn.addClass("act_active"); // 给第一个按钮添加 act_active 类名 }); }); //TAB切换 $(document).ready(function () { var $li = $(".ranking-tab li"); $li.click(function () { var $ul = $(this).parents(".h3").siblings("ul.ranking-content"); var $li = $(this).siblings("li"); var $t = $(this).index(); $li.removeClass(); $(this).addClass("act_active"); $ul.css("display", "none"); $ul.eq($t).css("display", "block"); }); }); // 给第一个li添加act_active $(document).ready(function () { $(".tab-li ul").each(function () { var $firstBtn = $(this).children("li").first(); // 或者 $li.eq(0) $firstBtn.addClass("act_active"); // 给第一个按钮添加 act_active 类名 }); }); //TAB切换 $(document).ready(function () { var $li = $(".tab-li li"); $li.click(function () { var $ul = $(this).parents(".tab-li").siblings(".tab-content"); var $li = $(this).siblings("li"); var $t = $(this).index(); $li.removeClass(); $(this).addClass("act_active"); $ul.css("display", "none"); $ul.eq($t).css("display", "block"); }); }); // 获取总宽度 $(window).on("load resize", function () { // 获取所有 li 标签 var $ul = $(".tab-li ul"); $ul.each(function () { var $lis = $(this).children("li"); // 计算宽度总和 var totalWidth = 0; $lis.each(function () { totalWidth += $(this).outerWidth(true); }); // 将总宽度添加到 ul 标签 $(this).width(totalWidth + 20); }); }); // 评论打分 $(document).ready(function () { // 点击事件 $(".comment-rating label").click(function () { $(this).addClass("active"); $(this).siblings().removeClass("active"); }); // 触发事件 $(".comment-rating label").hover( function () { $(this).prevAll().addClass("active-all"); $(this).addClass("active-all"); }, function () { $(this).prevAll().removeClass("active-all"); $(this).removeClass("active-all"); } ); }); $(function () { var win = $(window); var content = $('.content'); var contentTab = $('.content-tab'); var contentTabli = $('.content-tab li'); if (contentTab.length > 0){ var contentTabOffset = contentTab.offset().top; } // 软件介绍 var articleli = $('#article-li'); // 网友评论 if ($('#comments').length > 0){ var commentsOffset = $('#comments').offset().top; } var commentsli = $('#comments-li'); // 猜你喜欢 if ($('#related').length > 0){ var relatedOffset = $('#related').offset().top; } var relatedli = $('#related-li'); // 其他版本 if ($('#other').length > 0){ var otherOffset = $('#other').offset().top; } var otherli = $('#other-li'); win.scroll(function () { if (contentTabOffset && win.scrollTop() >= contentTabOffset - 100) { contentTab.addClass("content-tab-fixed"); } else { contentTab.removeClass("content-tab-fixed"); } // 网友评论 if (commentsOffset && win.scrollTop() >= commentsOffset - 200) { commentsli.addClass("act_active"); commentsli.siblings("li").removeClass("act_active"); } else { articleli.addClass("act_active"); commentsli.removeClass("act_active"); } // 猜你喜欢 if (relatedOffset && win.scrollTop() >= relatedOffset - 200) { relatedli.addClass("act_active"); relatedli.siblings("li").removeClass("act_active"); } else { if (!commentsli) { articleli.addClass("act_active"); } relatedli.removeClass("act_active"); } // 其他版本 if (otherOffset && win.scrollTop() >= otherOffset - 200) { otherli.addClass("act_active"); otherli.siblings("li").removeClass("act_active"); } else { if (!relatedli && !commentsli){ articleli.addClass("act_active"); } otherli.removeClass("act_active"); } contentTabli.click(function () { $(this).addClass('act_active').siblings("li").removeClass('act_active'); }); }); function updateContentTabWidth() { var contentWidth = content.width(); contentTab.width(contentWidth); } updateContentTabWidth(); $(window).resize(function () { updateContentTabWidth(); }); }); function articleli() { var top = $("#screenshotarticle").offset().top, move = top - 200; $("html,body").stop(true); $("html,body").animate({ scrollTop: move }, 500); }; function commentsli() { var top = $("#comments").offset().top, move = top - 200; $("html,body").stop(true); $("html,body").animate({ scrollTop: move }, 500); }; function relatedli() { var top = $("#related").offset().top, move = top - 200; $("html,body").stop(true); $("html,body").animate({ scrollTop: move }, 500); }; function otherli() { var top = $("#other").offset().top, move = top - 200; $("html,body").stop(true); $("html,body").animate({ scrollTop: move }, 500); }; // 图片查看器 $(document).ready(function() { var blw = $(".list-screenshot li").width(); var liArr = $(".list-screenshot ul").children("li"); var mysw = $("#screenshot-box").width(); var mus = parseInt(mysw / blw); var length = liArr.length - mus; var i = 0; if ($("#switching-left").length > 0) { $("#switching-left").click(function() { if (i > 0) { i--; $(".list-screenshot").css("left", -(blw * i)); } else { i = 0; $(".list-screenshot").css("left", 0); alert("当前是第一张图片"); } }); } if ($("#switching-right").length > 0) { $("#switching-right").click(function() { if (i < length) { i++; $(".list-screenshot").css("left", -(blw * i)); } else { i = length; $(".list-screenshot").css("left", -(blw * length)); alert("已经到达最右边"); } }); } // 捕获图片 if ($(".list-screenshot").length > 0) { $('.list-screenshot').on('click', '.pic', function() { var this_ = $(this); var images = this_.parents('.list-screenshot').find('.pic'); var imagesArr = new Array(); $.each(images, function(i, image) { imagesArr.push($(image).children('img').attr('src')); }); $.pictureViewer({ images: imagesArr, //需要查看的图片,数据类型为数组 initImageIndex: this_.index() + 1, //初始查看第几张图片,默认1 scrollSwitch: true //是否使用鼠标滚轮切换图片,默认false }); }); } }); // 软件截图 $(document).ready(function() { function uploadImage() { $(".upload-img .btn").each(function() { var form = $(this).closest(".upload-img").find("form[data-myupload]"); if (form.length === 0) { $(this).wrap("
"); } }); $(".upload-img .btn").change(function() { var read = $(this).parents(".upload-img").find(".read"); var file = $(this).parents(".upload-img").children(".file"); var fail = $(this).parents(".upload-img").find(".btnbox span"); $(this).parents(".upload-img").find("#myupload").ajaxSubmit({ dataType: 'json', success: function(data) { var img = bloghost + "zb_users/upload/fui_app/" + data.pic; read.attr("value", img); file.html("

" + data.name + "(" + data.size + "k)

"); }, error: function(xhr) { fail.html("上传失败"); file.html("

" + xhr.responseText+ "

"); } }); }); } function addScreenshotRow() { $('.screenshot-img').on('click', '#addscreenshot', function() { if ($('.screenshot-img dl[data-index]').length >= 10) { alert('最多只能上传10张软件截图'); return; } var index = 0, html; if ($('.screenshot-img dl[data-index]').length) { index = $('.screenshot-img dl[data-index]:last').data('index'); index++; } html = '
' + '
' + '上传图片' + '' + '
' + '' + '
'; $(this).before(html); uploadImage(); }); } uploadImage(); addScreenshotRow(); $('.screenshot-img').on('click','.delscreenshot',function(){ var pTag = $(this).closest('dl'); var pTags = $('.screenshot-img').find('dl'); var isFirst = pTags.index(pTag) == 0; if (isFirst) { pTag.css("display", "none"); pTag.find('input').val(''); } else { pTag.remove(); } }); }); // download下载 $(document).ready(function() { $('.download-url').on('click', '#adddownload', function() { if ($('.download-url dl[data-index]').length >= 5) { alert('最多只能设置5个下载地址'); return; } var index = 0, html; if ($('.download-url dl[data-index]').length) { index = $('.download-url dl[data-index]:last').data('index'); index++; } html = '
' + '
'; $(this).before(html); }); $('.download-url').on('click','.deldownload',function(){ var pTag = $(this).closest('dl'); var pTags = $('.download-url').find('dl'); var isFirst = pTags.index(pTag) == 0; if (isFirst) { pTag.css("display", "none"); pTag.find('input').val(''); } else { pTag.remove(); } }); }); $(document).ready(function() { // 对每个模块进行独立处理 $(".function_c ul").each(function() { // 默认给每个模块的第一个li添加类 $(this).find("li.li-app:first-child").addClass("li-app-hover"); var lastHoveredLi = null; // 鼠标悬停时的操作 $(this).find("li.li-app").hover( function () { // 移除当前模块内所有li的类 $(this).siblings().removeClass("li-app-hover"); // 为当前悬停的li添加类 $(this).addClass("li-app-hover"); // 记录最后一次停留的li lastHoveredLi = $(this); }, function () { // 离开后保留最后一次停留的li的类 if (lastHoveredLi) { lastHoveredLi.addClass("li-app-hover"); } } ); }); });