<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*æ‰‹æœºå¯¼èˆª*/
;(function($, window, document, undefined){
    $.extend({
        clickToggle: function(elea,eleb){
            $(elea).click(function(){
                if(!$(eleb).is(':visible')){
                    $(this).addClass('clicked');
                    $(eleb).slideDown();
                }else{
                    $(this).removeClass('clicked');
                    $(eleb).slideUp();
                }
            })
        },

    });
})(jQuery, window, document);
$.clickToggle('.nav-btn','.xy-nav');
/*è¿”å›žé¡¶éƒ¨*/
$("#top").click(function() {
	$("body, html").stop().animate({
			"scrollTop": 0
		});
	});
/* å¾®ä¿¡æç¤º */
	var btn=document.getElementById('btn');
	var clipboard=new Clipboard(btn);
	clipboard.on('success', function(e){
		$('#weixin').slideDown().delay(1500).slideUp(500);
		console.log(e);
	});
	clipboard.on('error', function(e){
		$('#weixin').slideDown().delay(1500).slideUp(500);
		console.log(e);
	});
/* å¾®ä¿¡å¼¹çª— */
function dkcf(){$('#wxnr').fadeIn("fast");$('#fdwx').fadeOut("fast");}
function gbcf(){$('#fdwx').fadeIn("slow");$('#wxnr').fadeOut("fast");}</pre></body></html>