2021-06-14

制作手风琴,遮罩层,canvas效果

在这里插入图片描述
在这里插入图片描述

index.html

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8" />
		<title></title>
		<link rel="stylesheet" type="text/css" href="./css/index.css"/>
		<script src="./js/jq.mini.js"></script>
		<script src="./js/index.js">
		</script>
	</head>
	<body>
		
		<!-- nav导航栏 -->
			<div class="nav">
			<div class="center">
				<div class="logo l">
					<img src="./img/logo/logo.png" >
				</div>
				<div class="liebiao">
					<ul>
						<!-- <div class="abs">为导航栏上横条结构 -->
						<li><div class="abs"></div><a href="#">手风琴</a></li>
						<li><div class="abs"></div><a href="#">遮罩层放大</a></li>
						<li><div class="abs"></div><a href="#">canvas钟表</a></li>
						<li><div class="abs"></div><a href="#">自定义效果</a></li>
					</ul>
				</div>
			</div>
		</div>
		<script type="text/javascript">
			//鼠标经过列表区变色函数
			function funMousever(x,bgd){
				$(".nav li").mouseover(function(){
					$(this).css("height","76").siblings("li").css("height","10")
					$(".nav li").eq(x).css("height","76")
					
					$(this).find(".abs").css({height:10,background:bgd})
					$(this).siblings("li").children(".abs").css("height","0")
					$(".abs").eq(x).css({height:10,background:bgd})
				})
			}
			//鼠标离开函数
			function funMouseleave(y,bgd){
				$(".nav li").mouseleave(function(){
					$(".nav li").eq(y).css("height","76").siblings("li").css("height","10")
					
					$(".abs").css("height","0")
					$(".abs").eq(y).css({height:10,background:bgd})
				})
			}
			//滚动监听事件判断当前内容区处于第几模块
			$(window).scroll(function(){
				$(".w").each(function(i,e){
					if($(document).scrollTop()>=$(e).offset().top){
						//函数调用
						if(i==0){
							funMousever(i,'#334960')
							funMouseleave(i,'#334960')
						}
						if(i==1){
							funMousever(i,'#f17c72')
							funMouseleave(i,'#f17c72')
						}
						
						if(i==2){
							funMousever(i,'#32ac97')
							funMouseleave(i,'#32ac97')
						}
						
						if(i==3){
							funMousever(i,'#7f4c76')
							funMouseleave(i,'#7f4c76')
						}
					}
				})
			})
			//点击滚动到指定区域
			$(".nav li").click(function(){
				console.log($(this).index())
				var current=$(".w").eq($(this).index()).offset().top
				$("body,html").stop().animate({
					scrollTop:current
				})
			})
			//滚动到该区域相应导航模块变色函数
			function bianse(x,bgd1,bgd2 ){
				$(".liebiao li").css("background",bgd1),$(".nav").css("background",bgd2)
				,$(".nav li").eq(x).css("height","76").siblings("li").css("height","10")
				
				,$(".nav li").eq(x).children(".abs").css({height:10,background:bgd2})
				,$(".nav li").eq(x).siblings("li").children(".abs").css("height","0")
			}
			$(window).scroll(function(){
				$(".w").each(function(i,e){
					if($(document).scrollTop()>=$(e).offset().top){
						//函数调用
						if(i==0){bianse(i,'#3f9fc9','#334960')}
						
						if(i==1){bianse(i,'#e6655e','#f17c72')}
						
						if(i==2){bianse(i,'#46dcc7','#32ac97')}
						
						if(i==3){bianse(i,'#b288ab','#7f4c76')}
					}
				})
			})
		</script>
		
		<!-- 手风琴区域 -->
		<div class="shoufengqin w">
			<div class="texiao center">
				<ul>
					<li><img src="img/手风琴/slide-1.jpg" ></li>
					<li><img src="img/手风琴/slide-2.jpg" ></li>
					<li><img src="img/手风琴/slide-3.jpg" ></li>
					<li><img src="img/手风琴/slide-4.jpg" ></li>
					<li><img src="img/手风琴/slide-5.jpg" ></li>
				</ul>
			</div>
		</div>
		<script type="text/javascript">
			//页面加载后即滚动到手风琴区域,触发导航栏效果函数
			function fun1(){
				var current=$(".shoufengqin").offset().top
				$("body,html").animate({
					scrollTop:current
				})
				
			}
			fun1()
			//鼠标经过某个li当前li宽度变为770px,其余li的宽度变为100px
			$(".texiao li").mouseenter(function(){
				$(this).stop().animate({
					width:770,
					opacity:1
				})	
			$(this).siblings("li").stop().animate({
				width:98,
				opacity:0.5
			})
			})
			$(".texiao li").mouseleave(function(){
				$(".texiao li").stop().animate({
					width:234,
					opacity:0.5
				})
			})
		</script>
		
		<!-- 遮罩层区域 -->
		<div class="zezhaoceng w">
			<div class="sanjiao1"></div>
			<div class="show center">
				<h1>遮罩层放大图</h1>
				<ul>
					<li><img src="img/遮罩层/large1.jpg" ><div class="zhezhao"></div><img class="sousuo" src="img/遮罩层/magnify.png" ></li>
					<li><img src="img/遮罩层/large2.jpg" ><div class="zhezhao"></div><img class="sousuo" src="img/遮罩层/magnify.png" ></li>
					<li><img src="img/遮罩层/large3.jpg" ><div class="zhezhao"></div><img class="sousuo" src="img/遮罩层/magnify.png" ></li>
					<li><img src="img/遮罩层/large4.jpg" ><div class="zhezhao"></div><img class="sousuo" src="img/遮罩层/magnify.png" ></li>
					<li><img src="img/遮罩层/large5.jpg" ><div class="zhezhao"></div><img class="sousuo" src="img/遮罩层/magnify.png" ></li>
					<li><img src="img/遮罩层/large6.jpg" ><div class="zhezhao"></div><img class="sousuo" src="img/遮罩层/magnify.png" ></li>
					<li><img src="img/遮罩层/large7.jpg" ><div class="zhezhao"></div><img class="sousuo" src="img/遮罩层/magnify.png" ></li>
					<li><img src="img/遮罩层/large8.jpg" ><div class="zhezhao"></div><img class="sousuo" src="img/遮罩层/magnify.png" ></li>
				</ul>
				<div class="big"></div>
			</div>
		</div>
		<script type="text/javascript">
			//当鼠标经过li时,当前的li的遮罩层显示,其他li的遮罩层隐藏,
			$(".show li").mouseover(function(){
				$(this).find(".zhezhao").stop().show()
				$(this).find(".sousuo").stop().show()
			})
			$(".show li").mouseout(function(){
				$(this).find(".zhezhao").stop().hide()
				$(this).find(".sousuo").stop().hide()
			})
			//轮播图方法,待完善
			$(".show li").click(function(){
				 $(".big").show()
				 $(this).animate({
					 zIndex:1,
					 width:640,
					 height:427,
				 })
				 alert("功能待完善,请重新刷新网页")
			 })
		</script>
		
		<!-- canvas钟表区域 -->
		<div class="zhongbiao w" >
			<div class="sanjiao2"></div>
			<div class="content center">
				<div class="text l">
					<h1 class="white">canvas画布</h1>
					<p>canvas 元素用于在网页上绘制图形。HTML5 的 canvas 元素使用 JavaScript 在网页上绘制2D图像。</p>
					<p>在矩形区域的画布上,JavaScript 绘制 2D图形,逐像素进行渲染,可以通过多种方法使用canvas元素绘制路径、矩形、圆形、字符以及添加图像。</p>
					<p>canvas 元素本身是没有绘图能力的。所有的绘制工作必须使用Javascript canvas绘图API完成。</p>
					<p>canvas在基于Web的图像显示方面比Flash更加立体、更加精巧,canvas游戏在流畅度和跨平台方面更牛。</p>
					<p>Flash曾经辉煌的时代,智能手机还未曾出现。现在以及未来的智能机时代,HTML5技术能够在banner广告上发挥巨大作用,用Canvas实现动态的广告效果再合适不过。</p>
				</div>
				<div class="naozhong l">
					<h1 class="white">钟表</h1>
					<div class="shijian">
						<ul id="ulid"></ul>
						<div id="hour"></div>
						<div id="minu"></div>
						<div id="sceo"></div>
					</div>
				</div>
			</div>
		</div>
		<script type="text/javascript">
			//获取时分秒元素
			var ul=document.querySelector('#ulid')
			var hour=document.querySelector('#hour')
			var minu=document.querySelector('#minu')
			var sceo=document.querySelector('#sceo')
			//循环打印表盘
			for(var i=0;i<60;i++){
				var li=document.createElement('li')
				li.style.transform='rotate('+(i*6)+'deg)'
				if(i%5===0){
					li.style.height='30px'
					li.style.backgroundColor='black'
				}
				ul.appendChild(li)
			}
			run();
			//隔一秒执行一次
			setInterval(run,1000)
			function run(){
				var date=new Date()
				//获取系统时分秒时间
				var h=date.getHours()
				var m=date.getMinutes()
				var s=date.getSeconds()
				//时分秒旋转相对应角度
				hour.style.transform='rotate('+(h*30+m/2)+'deg)'
				minu.style.transform='rotate('+(m*6)+'deg)'
				sceo.style.transform='rotate('+(s*6)+'deg)'
			}
		</script>
		
		<!-- 自定义效果区域 -->
		<div class="zidingyi w">
			自定义效果
		</div>
		<script type="text/javascript">
			var lis=document.querySelector('.zidingyi').querySelectorAll('img')
			var box=document.querySelector('.box')
			for(var i=0;i<lis.length;i++){
				lis[i].onclick=function(){
					box.style.background='url('+this.src+')';
				}
			}
		</script>
	
		<!-- 底部区域 -->
		<div class="footer">
			<p>本页面完成于2018-1-18,内容为《计算机软件工程》期末考试页面。</p>
		</div>
		
		<!-- 返回顶部区域 -->
		<div class="fanzu">
			<img src="img/返祖/totop.png" >
		</div>
		<script type="text/javascript">
			$(".fanzu").click(function(){
				var current=$(".shoufengqin").offset().top
				$("body,html").animate({
					scrollTop:current
				})
			})
		</script>
	</body>
</html>

CSS

* {
	margin: 0;
	padding: 0;
}
a {
	text-decoration: none;
}
li {
	list-style: none;
}
.white {
	color: white;
}
/* 左右浮动类 */
.l {
	float: left;
}
.r {
	float: right;
}
/* 版心 */
.center {
	width: 1173px;
	margin: 0 auto;
}
/* 三角形制作 */
.sanjiao1,.sanjiao2,.sanjiao3 {
	position: absolute;
	top: 0;
	left: 900px;/* 如何让绝对定位的盒子相对于父盒子居中 */
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 37px 50px 37px 50px;
}
.sanjiao1 {
	border-color:  #334960 transparent transparent transparent;
	
}
.sanjiao2 {
	border-color:  #f17c72 transparent transparent transparent;
	
}
.sanjiao3 {
	border-color:  #32ac97 transparent transparent transparent;
	
}
/* nav导航栏 */
.nav {
	width: 100%;
	background-color: #334960;
	height: 100px;
	border-bottom: 1px solid black;
	position: fixed;
	top: 0;
	z-index: 1;
	
}

.logo img {
	margin: 30px 550px 0 0;
}
.liebiao ul li {
	position: relative;
	float: left;
	/* height: 10px; */
	transition: height 300ms;
	
}
.liebiao ul li .abs {
	position: absolute;
	width: 100%;
	top: 0;
	transition: height 10ms;
}
.liebiao ul li a {
	display: inline-block;
	padding: 38px 15px 12px 15px;
	/* margin-top: 10px; */
	color: white;
	font-size: 20px;
	
}
/* 手风琴区域*/
.shoufengqin {
	height: 670px;
	background-color: #334960;
	padding-top: 85px;
	margin-top: 100px;
}
.texiao {
	height: 395px;
}
.texiao ul li {
	float: left;
	width: 230px;
	height: 395px;
	opacity:0.5;
	overflow: hidden;
	
}
/* 遮罩层区域 */
.zezhaoceng {
	position: relative;
	padding: 185px 0 185px 0;
	background-color: #f17c72;
}
.show {
	position: relative;
	height: 460px;
	overflow: hidden;
}
.big {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,1);
	display: none;
	
}

.show h1 {
	color: white;
	font-weight: normal;
}
.show ul li {
	position: relative;
	float: left;
	width: 270px;
	height: 192px;
	overflow: hidden;
	border-radius: 5px;
	margin-top: 15px;
	margin-right: 30px;
	
}
.show ul li:nth-child(4) {
	margin-right: 0;
}
.show ul li:nth-child(8) {
	margin-right: 0;
}
.show .zhezhao {
	position: absolute;
	width: 270px;
	height: 192px;
	border-radius: 5px;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.6);
	display: none;
	
}
.show .sousuo {
	position: absolute;
	left: 110px;
	top: 80px;
	display: none;
}
/* canvas钟表区域 */
.zhongbiao {
	position: relative;
	background-color: #32ac97;
	padding: 185px 0 185px 0;
	height: 550px;
}
.text {
	width: 545px;
	height: 500px;
	text-indent: 2em;
	margin:0 20px 0 30px;
	
}
.text h1 {
	text-indent: 0em;
	font-size: 35px;
	font-weight: normal;
	margin-bottom: 40px;
}
.text p {
	font-size: 20px;
	line-height: 35px;
}
.shijian {
	position: relative;
	width: 410px;
	height: 410px;
	border: 10px solid red;
	border-radius: 50%;
	margin-top: 20px;
	margin-left: 70px;
}
.naozhong h1 {
	font-size: 35px;
	font-weight: normal;
}
/* 会动的表 */
.shijian ul {
	width: 100%;
	height: 100%;
	position: relative;
}
.shijian ul li {
	position: absolute;
	width: 5px;
	height: 15px;
	background-color: white;
	left: 50%;
	top: 0;
	transform-origin: center 210px;
}
#hour,#minu,#sceo{
	position: absolute;
	left: 50%;
	top: 50%;
	transform-origin: center bottom;
}
#hour {
	background-color: yellow;
	width: 6px;
	height: 50px;
	margin-top: -50px;
}
#minu {
	background-color: blueviolet;
	width: 4px;
	height: 80px;
	margin-top: -80px;
}
#sceo {
	background-color: red;
	width: 2px;
	height: 120px;
	margin-top:-120px ;
}
/* 自定义效果区域*/
.zidingyi {
	height: 1000px;
	background-color: #7f4c76;
	
}

/* 底部区域 */
.footer {
	width: 100%;
	height: 100px;
	background-color:#334960 ;
	text-align: center;
}
.footer p {
	color: white;
	line-height: 100px;
}
/* 返回顶部区域 */
.fanzu {
	overflow: hidden;
	width: 49px;
	height: 49px;
	border-radius: 50%;
	border: 1px solid pink;
	position: fixed;
	top: 80%;
	right: 0;
	z-index: 1;
}

Jquery

/! jQuery v3.6.0 | © OpenJS Foundation and other contributors | jquery.org/license /
!function(e,t){“use strict”;“object”==typeof module&&“object"typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error(“jQuery requires a window with a document”);return t(e)}:t(e)}(“undefined”!=typeof window?window:this,function(C,e){“use strict”;var t=[],r=Object.getPrototypeOf,s=t.slice,g=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"typeof e&&“number”!=typeof e.nodeType&&“function”!=typeof e.item},x=function(e){return null!=e&&e=e.window},E=C.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement(“script”);if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute®)&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return nulle?e+”":“object”==typeof e||“function”==typeof e?n[o.call(e)]||“object”:typeof e}var f=“3.6.0”,S=function(e,t){return new S.fn.init(e,t)};function p(e){var t=!!e&&“length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&(“array”=n||0=t||“number"typeof t&&0<t&&t-1 in e)}S.fn=S.prototype={jquery:f,constructor:S,length:0,toArray:function(){return s.call(this)},get:function(e){return nulle?s.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=S.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return S.each(this,e)},map:function(n){return this.pushStack(S.map(this,function(e,t){return n.call(e,t,e)}))},slice:function(){return this.pushStack(s.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},even:function(){return this.pushStack(S.grep(this,function(e,t){return(t+1)%2}))},odd:function(){return this.pushStack(S.grep(this,function(e,t){return t%2}))},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(0<=n&&n<t?[this[n]]:[])},end:function(){return this.prevObject||this.constructor()},push:u,sort:t.sort,splice:t.splice},S.extend=S.fn.extend=function(){var e,t,n,r,i,o,a=arguments[0]||{},s=1,u=arguments.length,l=!1;for(“boolean”==typeof a&&(l=a,a=arguments[s]||{},s++),“object"typeof a||m(a)||(a={}),s=u&&(a=this,s–);s<u;s++)if(null!=(e=arguments[s]))for(t in e)r=e[t],“proto”!==t&&a!==r&&(l&&r&&(S.isPlainObject®||(i=Array.isArray®))?(n=a[t],o=i&&!Array.isArray(n)?[]:i||S.isPlainObject(n)?n:{},i=!1,a[t]=S.extend(l,o,r)):void 0!==r&&(a[t]=r));return a},S.extend({expando:“jQuery”+(f+Math.random()).replace(/\D/g,””),isReady:!0,error:function(e){throw new Error(e)},noop:function(){},isPlainObject:function(e){var t,n;return!(!e||”[object Object]"!==o.call(e))&&(!(t=r(e))||“function"typeof(n=v.call(t,“constructor”)&&t.constructor)&&a.call(n)=l)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},globalEval:function(e,t,n){b(e,{nonce:t&&t.nonce},n)},each:function(e,t){var n,r=0;if(p(e)){for(n=e.length;r<n;r++)if(!1=t.call(e[r],r,e[r]))break}else for(r in e)if(!1=t.call(e[r],r,e[r]))break;return e},makeArray:function(e,t){var n=t||[];return null!=e&&(p(Object(e))?S.merge(n,“string"typeof e?[e]:e):u.call(n,e)),n},inArray:function(e,t,n){return nullt?-1:i.call(t,e,n)},merge:function(e,t){for(var n=+t.length,r=0,i=e.length;r<n;r++)e[i++]=t[r];return e.length=i,e},grep:function(e,t,n){for(var r=[],i=0,o=e.length,a=!n;i<o;i++)!t(e[i],i)!==a&&r.push(e[i]);return r},map:function(e,t,n){var r,i,o=0,a=[];if(p(e))for(r=e.length;o<r;o++)null!=(i=t(e[o],o,n))&&a.push(i);else for(o in e)null!=(i=t(e[o],o,n))&&a.push(i);return g(a)},guid:1,support:y}),“function”==typeof Symbol&&(S.fn[Symbol.iterator]=t[Symbol.iterator]),S.each(“Boolean Number String Function Array Date RegExp Object Error Symbol”.split(” “),function(e,t){n[”[object “+t+”]”]=t.toLowerCase()});var d=function(n){var e,d,b,o,i,h,f,g,w,u,l,T,C,a,E,v,s,c,y,S=“sizzle”+1
new Date,p=n.document,k=0,r=0,m=ue(),x=ue(),A=ue(),N=ue(),j=function(e,t){return e===t&&(l=!0),0},D={}.hasOwnProperty,t=[],q=t.pop,L=t.push,H=t.push,O=t.slice,P=function(e,t){for(var n=0,r=e.length;n<r;n++)if(e[n]===t)return n;return-1},R=“checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped”,M="[\x20\t\r\n\f]",I="(?:\\[\da-fA-F]{1,6}"+M+"?|\\[\r\n\f]|[\w-]|[\0-\x7f])+",W="\["+M+"
("+I+")(?:"+M+"([^KaTeX parse error: Got function '\newline' with no arguments as superscript at position 1: \̲n̲e̲w̲l̲i̲n̲e̲=new RegExp(""+M+"+|((?:|[^\\])(?:\\.))"+M+"+ " , " g " ) , = n e w R e g E x p ( " " + M + " ∗ , " + M + " ∗ " ) , z = n e w R e g E x p ( " " + M + " ∗ ( [ > +   ] ∣ " + M + " ) " + M + " ∗ " ) , U = n e w R e g E x p ( M + " ∣ > " ) , X = n e w R e g E x p ( F ) , V = n e w R e g E x p ( " " + I + " ","g"),_=new RegExp("^"+M+"*,"+M+"*"),z=new RegExp("^"+M+"*([>+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+" ","g"),=newRegExp(""+M+","+M+""),z=newRegExp(""+M+"([>+ ]"+M+")"+M+""),U=newRegExp(M+">"),X=newRegExp(F),V=newRegExp(""+I+""),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\.("+I+")"),TAG:new RegExp("^("+I+"|[])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\("+M+"(even|odd|(([±]|)(\d)n|)"+M+"(?😦[±]|)"+M+"(\d+)|))"+M+"\)|)",“i”),bool:new RegExp("^(?:"+R+") " , " i " ) , n e e d s C o n t e x t : n e w R e g E x p ( " " + M + " ∗ [ > +   ] ∣ : ( e v e n ∣ o d d ∣ e q ∣ g t ∣ l t ∣ n t h ∣ f i r s t ∣ l a s t ) ( ? : ( " + M + " ∗ ( ( ? : − d ) ? d ∗ ) " + M + " ∗ ) ∣ ) ( ? = [ − ] ∣ ","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]| ","i"),needsContext:newRegExp(""+M+"[>+ ]:(evenoddeqgtltnthfirstlast)(?:("+M+"((?:d)?d)"+M+"))(?=[])",“i”)},Y=/HTML / i , Q = / ( ? : i n p u t ∣ s e l e c t ∣ t e x t a r e a ∣ b u t t o n ) /i,Q=/^(?:input|select|textarea|button) /i,Q=/(?:inputselecttextareabutton)/i,J=/^h\dKaTeX parse error: Double superscript at position 9: /i,K=/^[^̲{]+\{\s*\[nativ…/,ee=/[+~]/,te=new RegExp("\\[\da-fA-F]{1,6}"+M+"?|\\([^\r\n\f])",“g”),ne=function(e,t){var n=“0x”+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|-?\d)|-KaTeX parse error: Undefined control sequence: \0 at position 4: |[^\̲0̲-\x1f\x7f-\uFFF…,"KaTeX parse error: Expected 'EOF', got '}' at position 11: 1"),e,n,r)}̲function ue(){v…]="+M+"(?:’’|"")"),e.querySelectorAll("[selected]").length||v.push("\["+M+"(?:value|"+R+")"),e.querySelectorAll("[id="+S+"-]").length||v.push("="),(t=C.createElement(“input”)).setAttribute(“name”,""),e.appendChild(t),e.querySelectorAll("[name=’’]").length||v.push("\["+M+“name"+M+"=”+M+"(?:’’|"")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll(“a#”+S+"+").length||v.push(".#.+[+~]"),e.querySelectorAll("\\f"),v.push("[\r\n\f]")}),ce(function(e){e.innerHTML="";var t=C.createElement(“input”);t.setAttribute(“type”,“hidden”),e.appendChild(t).setAttribute(“name”,“D”),e.querySelectorAll("[name=d]").length&&v.push(“name”+M+"[^KaTeX parse error: Expected 'EOF', got '&' at position 51: …nabled").length&̲&v.push(":enabl…)"))&&m(e,function(e){return t.test(“string"typeof e.className&&e.className||“undefined”!=typeof e.getAttribute&&e.getAttribute(“class”)||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return nullt?”!="===r:!r||(t+="","="=r?t=i:"!="===r?t!==i:"^="=r?i&&0=t.indexOf(i):"="=r?i&&-1<t.indexOf(i):"KaTeX parse error: Expected 'EOF', got '&' at position 9: ="===r?i&̲&t.slice(-i.len…,"KaTeX parse error: Expected '}', got '&' at position 91: …le(a--)(i=o[a])&̲&(e[a]=!(t[a]=i…,"KaTeX parse error: Expected 'EOF', got '&' at position 10: 1"),t,s<n&̲&Ee(e.slice(s,n…," “)}),a=a.slice(n.length)),b.filter)!(r=G[o].exec(a))||u[o]&&!(r=uo)||(n=r.shift(),i.push({value:n,type:o,matches:r}),a=a.slice(n.length));if(!n)break}return t?a.length:a?se.error(e):x(e,s).slice(0)},f=se.compile=function(e,t){var n,v,y,m,x,r,i=[],o=[],a=A[e+” “];if(!a){t||(t=h(e)),n=t.length;while(n–)(a=Ee(t[n]))[S]?i.push(a)😮.push(a);(a=A(e,(v=o,m=0<(y=i).length,x=0<v.length,r=function(e,t,n,r,i){var o,a,s,u=0,l=“0”,c=e&&[],f=[],p=w,d=e||x&&b.find.TAG(”*",i),h=k+=nullp?1:Math.random()||.1,g=d.length;for(i&&(w=tC||t||i);l!g&&null!=(o=d[l]);l++){if(x&&o){a=0,t||o.ownerDocumentC||(T(o),n=!E);while(s=v[a++])if(s(o,t||C,n)){r.push(o);break}i&&(k=h)}m&&((o=!s&&o)&&u–,e&&c.push(o))}if(u+=l,m&&l!u){a=0;while(s=y[a++])s(c,f,t,n);if(e){if(0<u)while(l–)c[l]||f[l]||(f[l]=q.call®);f=Te(f)}H.apply(r,f),i&&!e&&0<f.length&&1<u+y.length&&se.uniqueSort®}return i&&(k=h,w=p),c},m?le®:r))).selector=e}return a},g=se.select=function(e,t,n,r){var i,o,a,s,u,l="function"typeof e&&e,c=!r&&h(e=l.selector||e);if(n=n||[],1=c.length){if(2<(o=c[0]=c[0].slice(0)).length&&“ID”=(a=o[0]).type&&9=t.nodeType&&E&&b.relative[o[1].type]){if(!(t=(b.find.ID(a.matches[0].replace(te,ne),t)||[])[0]))return n;l&&(t=t.parentNode),e=e.slice(o.shift().value.length)}i=G.needsContext.test(e)?0:o.length;while(i–){if(a=o[i],b.relative[s=a.type])break;if((u=b.find[s])&&(r=u(a.matches[0].replace(te,ne),ee.test(o[0].type)&&ye(t.parentNode)||t))){if(o.splice(i,1),!(e=r.length&&xe(o)))return H.apply(n,r),n;break}}}return(l||f(e,c))(r,t,!E,n,!t||ee.test(e)&&ye(t.parentNode)||t),n},d.sortStable=S.split("").sort(j).join("")===S,d.detectDuplicates=!!l,T(),d.sortDetached=ce(function(e){return 1&e.compareDocumentPosition(C.createElement(“fieldset”))}),ce(function(e){return e.innerHTML="","#"===e.firstChild.getAttribute(“href”)})||fe(“type|href|height|width”,function(e,t,n){if(!n)return e.getAttribute(t,“type”===t.toLowerCase()?1:2)}),d.attributes&&ce(function(e){return e.innerHTML="",e.firstChild.setAttribute(“value”,""),""=e.firstChild.getAttribute(“value”)})||fe(“value”,function(e,t,n){if(!n&&“input”=e.nodeName.toLowerCase())return e.defaultValue}),ce(function(e){return nulle.getAttribute(“disabled”)})||fe(R,function(e,t,n){var r;if(!n)return!0=e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null}),se}©;S.find=d,S.expr=d.selectors,S.expr[":"]=S.expr.pseudos,S.uniqueSort=S.unique=d.uniqueSort,S.text=d.getText,S.isXMLDoc=d.isXML,S.contains=d.contains,S.escapeSelector=d.escape;var h=function(e,t,n){var r=[],i=void 0!n;while((e=e[t])&&9!e.nodeType)if(1=e.nodeType){if(i&&S(e).is(n))break;r.push(e)}return r},T=function(e,t){for(var n=[];e;e=e.nextSibling)1=e.nodeType&&e!==t&&n.push(e);return n},k=S.expr.match.needsContext;function A(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}var N=/<([a-z][/\0>:\x20\t\r\n\f])[\x20\t\r\n\f]/?>(?:</\1>|)KaTeX parse error: Expected '}', got '&' at position 263: …r=t[0];return n&̲&(e=":not("+e+"…/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||D,“string”==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?thisr:this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,D=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e<n;e++)if(S.contains(this,t[e]))return!0})},closest:function(e,t){var n,r=0,i=this.length,o=[],a=“string”!=typeof e&&S(e);if(!k.test(e))for(;r<i;r++)for(n=this[r];n&&n!t;n=n.parentNode)if(n.nodeType<11&&(a?-1<a.index(n):1=n.nodeType&&S.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(1<o.length?S.uniqueSort(o)😮)},index:function(e){return e?“string"typeof e?i.call(S(e),this[0]):i.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(S.uniqueSort(S.merge(this.get(),S(e,t))))},addBack:function(e){return this.add(nulle?this.prevObject:this.prevObject.filter(e))}}),S.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return h(e,“parentNode”)},parentsUntil:function(e,t,n){return h(e,“parentNode”,n)},next:function(e){return O(e,“nextSibling”)},prev:function(e){return O(e,“previousSibling”)},nextAll:function(e){return h(e,“nextSibling”)},prevAll:function(e){return h(e,“previousSibling”)},nextUntil:function(e,t,n){return h(e,“nextSibling”,n)},prevUntil:function(e,t,n){return h(e,“previousSibling”,n)},siblings:function(e){return T((e.parentNode||{}).firstChild,e)},children:function(e){return T(e.firstChild)},contents:function(e){return null!=e.contentDocument&&r(e.contentDocument)?e.contentDocument:(A(e,“template”)&&(e=e.content||e),S.merge([],e.childNodes))}},function(r,i){S.fn[r]=function(e,t){var n=S.map(this,i,e);return"Until”!==r.slice(-5)&&(t=e),t&&“string”==typeof t&&(n=S.filter(t,n)),1<this.length&&(H[r]||S.uniqueSort(n),L.test®&&n.reverse()),this.pushStack(n)}});var P=/[^\x20\t\r\n\f]+/g;function R(e){return e}function M(e){throw e}function I(e,t,n,r){var i;try{e&&m(i=e.promise)?i.call(e).done(t).fail(n):e&&m(i=e.then)?i.call(e,t,n):t.apply(void 0,[e].slice®)}catch(e){n.apply(void 0,[e])}}S.Callbacks=function®{var e,n;r=“string"typeof r?(e=r,n={},S.each(e.match§||[],function(e,t){n[t]=!0}),n):S.extend({},r);var i,t,o,a,s=[],u=[],l=-1,c=function(){for(a=a||r.once,o=i=!0;u.length;l=-1){t=u.shift();while(++l<s.length)!1=s[l].apply(t[0],t[1])&&r.stopOnFalse&&(l=s.length,t=!1)}r.memory||(t=!1),i=!1,a&&(s=t?[]:”")},f={add:function(){return s&&(t&&!i&&(l=s.length-1,u.push(t)),function n(e){S.each(e,function(e,t){m(t)?r.unique&&f.has(t)||s.push(t):t&&t.length&&“string”!==w(t)&&n(t)})}(arguments),t&&!i&&c()),this},remove:function(){return S.each(arguments,function(e,t){var n;while(-1<(n=S.inArray(t,s,n)))s.splice(n,1),n<=l&&l–}),this},has:function(e){return e?-1<S.inArray(e,s):0<s.length},empty:function(){return s&&(s=[]),this},disable:function(){return a=u=[],s=t="",this},disabled:function(){return!s},lock:function(){return a=u=[],t||i||(s=t=""),this},locked:function(){return!!a},fireWith:function(e,t){return a||(t=[e,(t=t||[]).slice?t.slice():t],u.push(t),i||c()),this},fire:function(){return f.fireWith(this,arguments),this},fired:function(){return!!o}};return f},S.extend({Deferred:function(e){var o=[[“notify”,“progress”,S.Callbacks(“memory”),S.Callbacks(“memory”),2],[“resolve”,“done”,S.Callbacks(“once memory”),S.Callbacks(“once memory”),0,“resolved”],[“reject”,“fail”,S.Callbacks(“once memory”),S.Callbacks(“once memory”),1,“rejected”]],i=“pending”,a={state:function(){return i},always:function(){return s.done(arguments).fail(arguments),this},“catch”:function(e){return a.then(null,e)},pipe:function(){var i=arguments;return S.Deferred(function®{S.each(o,function(e,t){var n=m(i[t[4]])&&i[t[4]];s[t[1]](function(){var e=n&&n.apply(this,arguments);e&&m(e.promise)?e.promise().progress(r.notify).done(r.resolve).fail(r.reject):rt[0]+“With”})}),i=null}).promise()},then:function(t,n,r){var u=0;function l(i,o,a,s){return function(){var n=this,r=arguments,e=function(){var e,t;if(!(i<u)){if((e=a.apply(n,r))===o.promise())throw new TypeError(“Thenable self-resolution”);t=e&&(“object”==typeof e||“function”==typeof e)&&e.then,m(t)?s?t.call(e,l(u,o,R,s),l(u,o,M,s)):(u++,t.call(e,l(u,o,R,s),l(u,o,M,s),l(u,o,R,o.notifyWith))):(a!==R&&(n=void 0,r=[e]),(s||o.resolveWith)(n,r))}},t=s?e:function(){try{e()}catch(e){S.Deferred.exceptionHook&&S.Deferred.exceptionHook(e,t.stackTrace),u<=i+1&&(a!M&&(n=void 0,r=[e]),o.rejectWith(n,r))}};i?t():(S.Deferred.getStackHook&&(t.stackTrace=S.Deferred.getStackHook()),C.setTimeout(t))}}return S.Deferred(function(e){o[0][3].add(l(0,e,m®?r:R,e.notifyWith)),o[1][3].add(l(0,e,m(t)?t:R)),o[2][3].add(l(0,e,m(n)?n:M))}).promise()},promise:function(e){return null!=e?S.extend(e,a):a}},s={};return S.each(o,function(e,t){var n=t[2],r=t[5];a[t[1]]=n.add,r&&n.add(function(){i=r},o[3-e][2].disable,o[3-e][3].disable,o[0][2].lock,o[0][3].lock),n.add(t[3].fire),s[t[0]]=function(){return s[t[0]+“With”](this=s?void 0:this,arguments),this},s[t[0]+“With”]=n.fireWith}),a.promise(s),e&&e.call(s,s),s},when:function(e){var n=arguments.length,t=n,r=Array(t),i=s.call(arguments),o=S.Deferred(),a=function(t){return function(e){r[t]=this,i[t]=1<arguments.length?s.call(arguments):e,–n||o.resolveWith(r,i)}};if(n<=1&&(I(e,o.done(a(t)).resolve,o.reject,!n),“pending”=o.state()||m(i[t]&&i[t].then)))return o.then();while(t–)I(i[t],a(t),o.reject);return o.promise()}});var W=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;S.Deferred.exceptionHook=function(e,t){C.console&&C.console.warn&&e&&W.test(e.name)&&C.console.warn("jQuery.Deferred exception: "+e.message,e.stack,t)},S.readyException=function(e){C.setTimeout(function(){throw e})};var F=S.Deferred();function B(){E.removeEventListener(“DOMContentLoaded”,B),C.removeEventListener(“load”,B),S.ready()}S.fn.ready=function(e){return F.then(e)“catch”,this},S.extend({isReady:!1,readyWait:1,ready:function(e){(!0=e?–S.readyWait:S.isReady)||(S.isReady=!0)!==e&&0<–S.readyWait||F.resolveWith(E,[S])}}),S.ready.then=F.then,“complete”=E.readyState||“loading”!E.readyState&&!E.documentElement.doScroll?C.setTimeout(S.ready):(E.addEventListener(“DOMContentLoaded”,B),C.addEventListener(“load”,B));var KaTeX parse error: Expected '}', got 'EOF' at end of input: …or(s in i=!0,n)(e,t,s,n[s],!0,o,a);else if(void 0!r&&(i=!0,m®||(a=!0),l&&(a?(t.call(e,r),t=null):(l=t,t=function(e,t,n){return l.call(S(e),n)})),t))for(;s<u;s++)t(e[s],n,a?r:r.call(e[s],s,t(e[s],n)));return i?e:l?t.call(e):u?t(e[0],n)😮},=/^-ms-/,z=/-([a-z])/g;function U(e,t){return t.toUpperCase()}function X(e){return e.replace(,“ms-”).replace(z,U)}var V=function(e){return 1=e.nodeType||9=e.nodeType||!+e.nodeType};function G(){this.expando=S.expando+G.uid++}G.uid=1,G.prototype={cache:function(e){var t=e[this.expando];return t||(t={},V(e)&&(e.nodeType?e[this.expando]=t:Object.defineProperty(e,this.expando,{value:t,configurable:!0}))),t},set:function(e,t,n){var r,i=this.cache(e);if("string"typeof t)i[X(t)]=n;else for(r in t)i[X®]=t[r];return i},get:function(e,t){return void 0=t?this.cache(e):e[this.expando]&&e[this.expando][X(t)]},access:function(e,t,n){return void 0=t||t&&“string"typeof t&&void 0=n?this.get(e,t):(this.set(e,t,n),void 0!==n?n:t)},remove:function(e,t){var n,r=e[this.expando];if(void 0!r){if(void 0!t){n=(t=Array.isArray(t)?t.map(X):(t=X(t))in r?[t]:t.match§||[]).length;while(n–)delete r[t[n]]}(void 0=t||S.isEmptyObject®)&&(e.nodeType?e[this.expando]=void 0:delete e[this.expando])}},hasData:function(e){var t=e[this.expando];return void 0!t&&!S.isEmptyObject(t)}};var Y=new G,Q=new G,J=/^(?:{[\w\W]}|[[\w\W]])KaTeX parse error: Expected '}', got '&' at position 53: …i;if(void 0===n&̲&1===e.nodeType…&").toLowerCase(),"string"typeof(n=e.getAttribute®)){try{n=“true”=(i=n)||“false”!i&&(“null”=i?null:i=+i+""?+i:J.test(i)?JSON.parse(i):i)}catch(e){}Q.set(e,t,n)}else n=void 0;return n}S.extend({hasData:function(e){return Q.hasData(e)||Y.hasData(e)},data:function(e,t,n){return Q.access(e,t,n)},removeData:function(e,t){Q.remove(e,t)},_data:function(e,t,n){return Y.access(e,t,n)},_removeData:function(e,t){Y.remove(e,t)}}),S.fn.extend({data:function(n,e){var t,r,i,o=this[0],a=o&&o.attributes;if(void 0=n){if(this.length&&(i=Q.get(o),1=o.nodeType&&!Y.get(o,“hasDataAttrs”))){t=a.length;while(t–)a[t]&&0=(r=a[t].name).indexOf(“data-”)&&(r=X(r.slice(5)),Z(o,r,i[r]));Y.set(o,“hasDataAttrs”,!0)}return i}return"object”==typeof n?this.each(function(){Q.set(this,n)}):KaTeX parse error: Expected '}', got '&' at position 29: …n(e){var t;if(o&̲&void 0===e)ret…",“i”),ne=[“Top”,“Right”,“Bottom”,“Left”],re=E.documentElement,ie=function(e){return S.contains(e.ownerDocument,e)},oe={composed:!0};re.getRootNode&&(ie=function(e){return S.contains(e.ownerDocument,e)||e.getRootNode(oe)=e.ownerDocument});var ae=function(e,t){return"none"=(e=t||e).style.display||""===e.style.display&&ie(e)&&“none”===S.css(e,“display”)};function se(e,t,n,r){var i,o,a=20,s=r?function(){return r.cur()}:function(){return S.css(e,t,"")},u=s(),l=n&&n[3]||(S.cssNumber[t]?"":“px”),c=e.nodeType&&(S.cssNumber[t]||“px”!==l&&+u)&&te.exec(S.css(e,t));if(c&&c[3]!==l){u/=2,l=l||c[3],c=+u||1;while(a–)S.style(e,t,c+l),(1-o)(1-(o=s()/u||.5))<=0&&(a=0),c/=o;c=2,S.style(e,t,c+l),n=n||[]}return n&&(c=+c||+u||0,i=n[1]?c+(n[1]+1)n[2]:+n[2],r&&(r.unit=l,r.start=c,r.end=i)),i}var ue={};function le(e,t){for(var n,r,i,o,a,s,u,l=[],c=0,f=e.length;c<f;c++)(r=e[c]).style&&(n=r.style.display,t?(“none”===n&&(l[c]=Y.get(r,“display”)||null,l[c]||(r.style.display="")),""===r.style.display&&ae®&&(l[c]=(u=a=o=void 0,a=(i=r).ownerDocument,s=i.nodeName,(u=ue[s])||(o=a.body.appendChild(a.createElement(s)),u=S.css(o,“display”),o.parentNode.removeChild(o),“none”===u&&(u=“block”),ue[s]=u)))):“none”!==n&&(l[c]=“none”,Y.set(r,“display”,n)));for(c=0;c<f;c++)null!=l[c]&&(e[c].style.display=l[c]);return e}S.fn.extend({show:function(){return le(this,!0)},hide:function(){return le(this)},toggle:function(e){return"boolean"==typeof e?e?this.show():this.hide():this.each(function(){ae(this)?S(this).show():S(this).hide()})}});var ce,fe,pe=/(?:checkbox|radio)$/i,de=/<([a-z][^/\0>\x20\t\r\n\f]*)/i,he=/^$|moduleKaTeX parse error: Undefined control sequence: \/ at position 2: |\̲/̲(?:java|ecma)sc…)"),a=o=p.length;while(o–)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount–,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!f.teardown.call(e,h,v.handle)||S.removeEvent(e,d,v.handle),delete u[d])}else for(d in u)S.event.remove(e,d+t[l],n,r,!0);S.isEmptyObject(u)&&Y.remove(e,“handle events”)}},dispatch:function(e){var t,n,r,i,o,a,s=new Array(arguments.length),u=S.event.fix(e),l=(Y.get(this,“events”)||Object.create(null))[u.type]||[],c=S.event.special[u.type]||{};for(s[0]=u,t=1;t<arguments.length;t++)s[t]=arguments[t];if(u.delegateTarget=this,!c.preDispatch||!1!c.preDispatch.call(this,u)){a=S.event.handlers.call(this,u,l),t=0;while((i=a[t++])&&!u.isPropagationStopped()){u.currentTarget=i.elem,n=0;while((o=i.handlers[n++])&&!u.isImmediatePropagationStopped())u.rnamespace&&!1!o.namespace&&!u.rnamespace.test(o.namespace)||(u.handleObj=o,u.data=o.data,void 0!(r=((S.event.special[o.origType]||{}).handle||o.handler).apply(i.elem,s))&&!1=(u.result=r)&&(u.preventDefault(),u.stopPropagation()))}return c.postDispatch&&c.postDispatch.call(this,u),u.result}},handlers:function(e,t){var n,r,i,o,a,s=[],u=t.delegateCount,l=e.target;if(u&&l.nodeType&&!(“click”=e.type&&1<=e.button))for(;l!this;l=l.parentNode||this)if(1=l.nodeType&&(“click”!e.type||!0!l.disabled)){for(o=[],a={},n=0;n<u;n++)void 0=a[i=(r=t[n]).selector+" "]&&(a[i]=r.needsContext?-1<S(i,this).index(l):S.find(i,this,null,[l]).length),a[i]&&o.push®;o.length&&s.push({elem:l,handlers:o})}return l=this,u<t.length&&s.push({elem:l,handlers:t.slice(u)}),s},addProp:function(t,e){Object.defineProperty(S.Event.prototype,t,{enumerable:!0,configurable:!0,get:m(e)?function(){if(this.originalEvent)return e(this.originalEvent)}:function(){if(this.originalEvent)return this.originalEvent[t]},set:function(e){Object.defineProperty(this,t,{enumerable:!0,configurable:!0,writable:!0,value:e})}})},fix:function(e){return e[S.expando]?e:new S.Event(e)},special:{load:{noBubble:!0},click:{setup:function(e){var t=this||e;return pe.test(t.type)&&t.click&&A(t,“input”)&&Se(t,“click”,we),!1},trigger:function(e){var t=this||e;return pe.test(t.type)&&t.click&&A(t,“input”)&&Se(t,“click”),!0},_default:function(e){var t=e.target;return pe.test(t.type)&&t.click&&A(t,“input”)&&Y.get(t,“click”)||A(t,“a”)}},beforeunload:{postDispatch:function(e){void 0!e.result&&e.originalEvent&&(e.originalEvent.returnValue=e.result)}}}},S.removeEvent=function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n)},S.Event=function(e,t){if(!(this instanceof S.Event))return new S.Event(e,t);e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||void 0=e.defaultPrevented&&!1=e.returnValue?we:Te,this.target=e.target&&3=e.target.nodeType?e.target.parentNode:e.target,this.currentTarget=e.currentTarget,this.relatedTarget=e.relatedTarget):this.type=e,t&&S.extend(this,t),this.timeStamp=e&&e.timeStamp||Date.now(),this[S.expando]=!0},S.Event.prototype={constructor:S.Event,isDefaultPrevented:Te,isPropagationStopped:Te,isImmediatePropagationStopped:Te,isSimulated:!1,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=we,e&&!this.isSimulated&&e.preventDefault()},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=we,e&&!this.isSimulated&&e.stopPropagation()},stopImmediatePropagation:function(){var e=this.originalEvent;this.isImmediatePropagationStopped=we,e&&!this.isSimulated&&e.stopImmediatePropagation(),this.stopPropagation()}},S.each({altKey:!0,bubbles:!0,cancelable:!0,changedTouches:!0,ctrlKey:!0,detail:!0,eventPhase:!0,metaKey:!0,pageX:!0,pageY:!0,shiftKey:!0,view:!0,“char”:!0,code:!0,charCode:!0,key:!0,keyCode:!0,button:!0,buttons:!0,clientX:!0,clientY:!0,offsetX:!0,offsetY:!0,pointerId:!0,pointerType:!0,screenX:!0,screenY:!0,targetTouches:!0,toElement:!0,touches:!0,which:!0},S.event.addProp),S.each({focus:“focusin”,blur:“focusout”},function(e,t){S.event.special[e]={setup:function(){return Se(this,e,Ce),!1},trigger:function(){return Se(this,e),!0},_default:function(){return!0},delegateType:t}}),S.each({mouseenter:“mouseover”,mouseleave:“mouseout”,pointerenter:“pointerover”,pointerleave:“pointerout”},function(e,i){S.event.special[e]={delegateType:i,bindType:i,handle:function(e){var t,n=e.relatedTarget,r=e.handleObj;return n&&(n=this||S.contains(this,n))||(e.type=r.origType,t=r.handler.apply(this,arguments),e.type=i),t}}}),S.fn.extend({on:function(e,t,n,r){return Ee(this,e,t,n,r)},one:function(e,t,n,r){return Ee(this,e,t,n,r,1)},off:function(e,t,n){var r,i;if(e&&e.preventDefault&&e.handleObj)return r=e.handleObj,S(e.delegateTarget).off(r.namespace?r.origType+"."+r.namespace:r.origType,r.selector,r.handler),this;if(“object”==typeof e){for(i in e)this.off(i,t,e[i]);return this}return!1!t&&“function”!=typeof t||(n=t,t=void 0),!1=n&&(n=Te),this.each(function(){S.event.remove(this,e,n,t)})}});var ke=/<script|<style|<link/i,Ae=/checked\s(?:[=]|=\s*.checked.)/i,Ne=/\s*<!(?:[CDATA[|–)|(?:]]|–)>\s*$/g;function je(e,t){return A(e,“table”)&&A(11!t.nodeType?t:t.firstChild,“tr”)&&S(e).children(“tbody”)[0]||e}function De(e){return e.type=(null!e.getAttribute(“type”))+"/"+e.type,e}function qe(e){return"true/"=(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute(“type”),e}function Le(e,t){var n,r,i,o,a,s;if(1=t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,“handle events”),s)for(n=0,r=s[i].length;n<r;n++)S.event.add(t,i,s[i][n]);Q.hasData(e)&&(o=Q.access(e),a=S.extend({},o),Q.set(t,a))}}function He(n,r,i,o){r=g®;var e,t,a,s,u,l,c=0,f=n.length,p=f-1,d=r[0],h=m(d);if(h||1<f&&“string"typeof d&&!y.checkClone&&Ae.test(d))return n.each(function(e){var t=n.eq(e);h&&(r[0]=d.call(this,e,t.html())),He(t,r,i,o)});if(f&&(t=(e=xe(r,n[0].ownerDocument,!1,n,o)).firstChild,1=e.childNodes.length&&(e=t),t||o)){for(s=(a=S.map(ve(e,“script”),De)).length;c<f;c++)u=e,c!p&&(u=S.clone(u,!0,!0),s&&S.merge(a,ve(u,“script”))),i.call(n[c],u,c);if(s)for(l=a[a.length-1].ownerDocument,S.map(a,qe),c=0;c<s;c++)u=a[c],he.test(u.type||"")&&!Y.access(u,“globalEval”)&&S.contains(l,u)&&(u.src&&“module”!(u.type||”").toLowerCase()?S._evalUrl&&!u.noModule&&S._evalUrl(u.src,{nonce:u.nonce||u.getAttribute(“nonce”)},l):b(u.textContent.replace(Ne,""),u,l))}return n}function Oe(e,t,n){for(var r,i=t?S.filter(t,e):e,o=0;null!=(r=i[o]);o++)n||1!r.nodeType||S.cleanData(ve®),r.parentNode&&(n&&ie®&&ye(ve(r,“script”)),r.parentNode.removeChild®);return e}S.extend({htmlPrefilter:function(e){return e},clone:function(e,t,n){var r,i,o,a,s,u,l,c=e.cloneNode(!0),f=ie(e);if(!(y.noCloneChecked||1!e.nodeType&&11!e.nodeType||S.isXMLDoc(e)))for(a=ve©,r=0,i=(o=ve(e)).length;r<i;r++)s=o[r],u=a[r],void 0,“input”=(l=u.nodeName.toLowerCase())&&pe.test(s.type)?u.checked=s.checked:“input”!l&&“textarea”!l||(u.defaultValue=s.defaultValue);if(t)if(n)for(o=o||ve(e),a=a||ve©,r=0,i=o.length;r<i;r++)Le(o[r],a[r]);else Le(e,c);return 0<(a=ve(c,“script”)).length&&ye(a,!f&&ve(e,“script”)),c},cleanData:function(e){for(var t,n,r,i=S.event.special,o=0;void 0!(n=e[o]);o++)if(V(n)){if(t=n[Y.expando]){if(t.events)for(r in t.events)i[r]?S.event.remove(n,r):S.removeEvent(n,r,t.handle);n[Y.expando]=void 0}n[Q.expando]&&(n[Q.expando]=void 0)}}}),S.fn.extend({detach:function(e){return Oe(this,e,!0)},remove:function(e){return Oe(this,e)},text:function(e){return $(this,function(e){return void 0=e?S.text(this):this.empty().each(function(){1!this.nodeType&&11!this.nodeType&&9!this.nodeType||(this.textContent=e)})},null,e,arguments.length)},append:function(){return He(this,arguments,function(e){1!this.nodeType&&11!this.nodeType&&9!this.nodeType||je(this,e).appendChild(e)})},prepend:function(){return He(this,arguments,function(e){if(1=this.nodeType||11=this.nodeType||9=this.nodeType){var t=je(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return He(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return He(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1=e.nodeType&&(S.cleanData(ve(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=nullt?e:t,this.map(function(){return S.clone(this,e,t)})},html:function(e){return KaTeX parse error: Expected '}', got '&' at position 68: …h;if(void 0===e&̲&1===t.nodeType…“,“i”),Re=function(e){var t=e.ownerDocument.defaultView;return t&&t.opener||(t=C),t.getComputedStyle(e)},Me=function(e,t,n){var r,i,o={};for(i in t)o[i]=e.style[i],e.style[i]=t[i];for(i in r=n.call(e),t)e.style[i]=o[i];return r},Ie=new RegExp(ne.join(”|"),“i”);function We(e,t,n){var r,i,o,a,s=e.style;return(n=n||Re(e))&&(""!(a=n.getPropertyValue(t)||n[t])||ie(e)||(a=S.style(e,t)),!y.pixelBoxStyles()&&Pe.test(a)&&Ie.test(t)&&(r=s.width,i=s.minWidth,o=s.maxWidth,s.minWidth=s.maxWidth=s.width=a,a=n.width,s.width=r,s.minWidth=i,s.maxWidth=o)),void 0!a?a+"":a}function Fe(e,t){return{get:function(){if(!e())return(this.get=t).apply(this,arguments);delete this.get}}}!function(){function e(){if(l){u.style.cssText=“position:absolute;left:-11111px;width:60px;margin-top:1px;padding:0;border:0”,l.style.cssText=“position:relative;display:block;box-sizing:border-box;overflow:scroll;margin:auto;border:1px;padding:1px;width:60%;top:1%”,re.appendChild(u).appendChild(l);var e=C.getComputedStyle(l);n=“1%”!e.top,s=12=t(e.marginLeft),l.style.right=“60%”,o=36=t(e.right),r=36=t(e.width),l.style.position=“absolute”,i=12=t(l.offsetWidth/3),re.removeChild(u),l=null}}function t(e){return Math.round(parseFloat(e))}var n,r,i,o,a,s,u=E.createElement(“div”),l=E.createElement(“div”);l.style&&(l.style.backgroundClip=“content-box”,l.cloneNode(!0).style.backgroundClip="",y.clearCloneStyle=“content-box”=l.style.backgroundClip,S.extend(y,{boxSizingReliable:function(){return e(),r},pixelBoxStyles:function(){return e(),o},pixelPosition:function(){return e(),n},reliableMarginLeft:function(){return e(),s},scrollboxSize:function(){return e(),i},reliableTrDimensions:function(){var e,t,n,r;return nulla&&(e=E.createElement(“table”),t=E.createElement(“tr”),n=E.createElement(“div”),e.style.cssText=“position:absolute;left:-11111px;border-collapse:separate”,t.style.cssText=“border:1px solid”,t.style.height=“1px”,n.style.height=“9px”,n.style.display=“block”,re.appendChild(e).appendChild(t).appendChild(n),r=C.getComputedStyle(t),a=parseInt(r.height,10)+parseInt(r.borderTopWidth,10)+parseInt(r.borderBottomWidth,10)===t.offsetHeight,re.removeChild(e)),a}}))}();var Be=[“Webkit”,“Moz”,“ms”],$e=E.createElement(“div”).style,_e={};function ze(e){var t=S.cssProps[e]||_e[e];return t||(e in $e?e:_e[e]=function(e){var t=e[0].toUpperCase()+e.slice(1),n=Be.length;while(n–)if((e=Be[n]+t)in $e)return e}(e)||e)}var Ue=/(none|table(?!-c[ea]).+)/,Xe=/–/,Ve={position:“absolute”,visibility:“hidden”,display:“block”},Ge={letterSpacing:“0”,fontWeight:“400”};function Ye(e,t,n){var r=te.exec(t);return r?Math.max(0,r[2]-(n||0))+(r[3]||“px”):t}function Qe(e,t,n,r,i,o){var a=“width”=t?1:0,s=0,u=0;if(n=(r?“border”:“content”))return 0;for(;a<4;a+=2)“margin”===n&&(u+=S.css(e,n+ne[a],!0,i)),r?(“content”===n&&(u-=S.css(e,“padding”+ne[a],!0,i)),“margin”!==n&&(u-=S.css(e,“border”+ne[a]+“Width”,!0,i))):(u+=S.css(e,“padding”+ne[a],!0,i),“padding”!==n?u+=S.css(e,“border”+ne[a]+“Width”,!0,i):s+=S.css(e,“border”+ne[a]+“Width”,!0,i));return!r&&0<=o&&(u+=Math.max(0,Math.ceil(e[“offset”+t[0].toUpperCase()+t.slice(1)]-o-u-s-.5))||0),u}function Je(e,t,n){var r=Re(e),i=(!y.boxSizingReliable()||n)&&“border-box”===S.css(e,“boxSizing”,!1,r),o=i,a=We(e,t,r),s=“offset”+t[0].toUpperCase()+t.slice(1);if(Pe.test(a)){if(!n)return a;a=“auto”}return(!y.boxSizingReliable()&&i||!y.reliableTrDimensions()&&A(e,“tr”)||“auto”===a||!parseFloat(a)&&“inline”===S.css(e,“display”,!1,r))&&e.getClientRects().length&&(i=“border-box”=S.css(e,“boxSizing”,!1,r),(o=s in e)&&(a=e[s])),(a=parseFloat(a)||0)+Qe(e,t,n||(i?“border”:“content”),o,r,a)+“px”}function Ke(e,t,n,r,i){return new Ke.prototype.init(e,t,n,r,i)}S.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=We(e,“opacity”);return""=n?“1”:n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(e,t,n,r){if(e&&3!e.nodeType&&8!e.nodeType&&e.style){var i,o,a,s=X(t),u=Xe.test(t),l=e.style;if(u||(t=ze(s)),a=S.cssHooks[t]||S.cssHooks[s],void 0=n)return a&&"get"in a&&void 0!(i=a.get(e,!1,r))?i:l[t];“string”=(o=typeof n)&&(i=te.exec(n))&&i[1]&&(n=se(e,t,i),o=“number”),null!=n&&nn&&(“number”!o||u||(n+=i&&i[3]||(S.cssNumber[s]?"":“px”)),y.clearCloneStyle||""!n||0!t.indexOf(“background”)||(l[t]=“inherit”),a&&"set"in a&&void 0=(n=a.set(e,n,r))||(u?l.setProperty(t,n):l[t]=n))}},css:function(e,t,n,r){var i,o,a,s=X(t);return Xe.test(t)||(t=ze(s)),(a=S.cssHooks[t]||S.cssHooks[s])&&"get"in a&&(i=a.get(e,!0,n)),void 0=i&&(i=We(e,t,r)),“normal”=i&&t in Ge&&(i=Ge[t]),""=n||n?(o=parseFloat(i),!0=n||isFinite(o)?o||0:i):i}}),S.each([“height”,“width”],function(e,u){S.cssHooks[u]={get:function(e,t,n){if(t)return!Ue.test(S.css(e,“display”))||e.getClientRects().length&&e.getBoundingClientRect().width?Je(e,u,n):Me(e,Ve,function(){return Je(e,u,n)})},set:function(e,t,n){var r,i=Re(e),o=!y.scrollboxSize()&&“absolute”=i.position,a=(o||n)&&“border-box”=S.css(e,“boxSizing”,!1,i),s=n?Qe(e,u,n,a,i):0;return a&&o&&(s-=Math.ceil(e[“offset”+u[0].toUpperCase()+u.slice(1)]-parseFloat(i[u])-Qe(e,u,“border”,!1,i)-.5)),s&&(r=te.exec(t))&&“px”!(r[3]||“px”)&&(e.style[u]=t,t=S.css(e,u)),Ye(0,t,s)}}}),S.cssHooks.marginLeft=Fe(y.reliableMarginLeft,function(e,t){if(t)return(parseFloat(We(e,“marginLeft”))||e.getBoundingClientRect().left-Me(e,{marginLeft:0},function(){return e.getBoundingClientRect().left}))+“px”}),S.each({margin:"",padding:"",border:“Width”},function(i,o){S.cssHooks[i+o]={expand:function(e){for(var t=0,n={},r="string"typeof e?e.split(" “):[e];t<4;t++)n[i+ne[t]+o]=r[t]||r[t-2]||r[0];return n}},“margin”!i&&(S.cssHooks[i+o].set=Ye)}),S.fn.extend({css:function(e,t){return KaTeX parse error: Expected 'EOF', got '}' at position 196: …guments.length)}̲}),((S.Tween=Ke…/,it=/queueHooks$/;function ot(){et&&(!1=E.hidden&&C.requestAnimationFrame?C.requestAnimationFrame(ot):C.setTimeout(ot,S.fx.interval),S.fx.tick())}function at(){return C.setTimeout(function(){Ze=void 0}),Ze=Date.now()}function st(e,t){var n,r=0,i={height:e};for(t=t?1:0;r<4;r+=2-t)i[“margin”+(n=ne[r])]=i[“padding”+n]=e;return t&&(i.opacity=i.width=e),i}function ut(e,t,n){for(var r,i=(lt.tweeners[t]||[]).concat(lt.tweeners[”"]),o=0,a=i.length;o<a;o++)if(r=i[o].call(n,t,e))return r}function lt(o,e,t){var n,a,r=0,i=lt.prefilters.length,s=S.Deferred().always(function(){delete u.elem}),u=function(){if(a)return!1;for(var e=Ze||at(),t=Math.max(0,l.startTime+l.duration-e),n=1-(t/l.duration||0),r=0,i=l.tweens.length;r<i;r++)l.tweens[r].run(n);return s.notifyWith(o,[l,n,t]),n<1&&i?t:(i||s.notifyWith(o,[l,1,0]),s.resolveWith(o,[l]),!1)},l=s.promise({elem:o,props:S.extend({},e),opts:S.extend(!0,{specialEasing:{},easing:S.easing._default},t),originalProperties:e,originalOptions:t,startTime:Ze||at(),duration:t.duration,tweens:[],createTween:function(e,t){var n=S.Tween(o,l.opts,e,t,l.opts.specialEasing[e]||l.opts.easing);return l.tweens.push(n),n},stop:function(e){var t=0,n=e?l.tweens.length:0;if(a)return this;for(a=!0;t<n;t++)l.tweens[t].run(1);return e?(s.notifyWith(o,[l,1,0]),s.resolveWith(o,[l,e]))😒.rejectWith(o,[l,e]),this}}),c=l.props;for(!function(e,t){var n,r,i,o,a;for(n in e)if(i=t[r=X(n)],o=e[n],Array.isArray(o)&&(i=o[1],o=e[n]=o[0]),n!==r&&(e[r]=o,delete e[n]),(a=S.cssHooks[r])&&“expand"in a)for(n in o=a.expand(o),delete e[r],o)n in e||(e[n]=o[n],t[n]=i);else t[r]=i}(c,l.opts.specialEasing);r<i;r++)if(n=lt.prefilters[r].call(l,o,c,l.opts))return m(n.stop)&&(S._queueHooks(l.elem,l.opts.queue).stop=n.stop.bind(n)),n;return S.map(c,ut,l),m(l.opts.start)&&l.opts.start.call(o,l),l.progress(l.opts.progress).done(l.opts.done,l.opts.complete).fail(l.opts.fail).always(l.opts.always),S.fx.timer(S.extend(u,{elem:o,anim:l,queue:l.opts.queue})),l}S.Animation=S.extend(lt,{tweeners:{”":[function(e,t){var n=this.createTween(e,t);return se(n.elem,e,te.exec(t),n),n}]},tweener:function(e,t){m(e)?(t=e,e=["*"]):e=e.match§;for(var n,r=0,i=e.length;r<i;r++)n=e[r],lt.tweeners[n]=lt.tweeners[n]||[],lt.tweeners[n].unshift(t)},prefilters:[function(e,t,n){var r,i,o,a,s,u,l,c,f="width"in t||"height"in t,p=this,d={},h=e.style,g=e.nodeType&&ae(e),v=Y.get(e,“fxshow”);for(r in n.queue||(null(a=S._queueHooks(e,“fx”)).unqueued&&(a.unqueued=0,s=a.empty.fire,a.empty.fire=function(){a.unqueued||s()}),a.unqueued++,p.always(function(){p.always(function(){a.unqueued–,S.queue(e,“fx”).length||a.empty.fire()})})),t)if(i=t[r],rt.test(i)){if(delete t[r],o=o||“toggle”=i,i=(g?“hide”:“show”)){if(“show”!i||!v||void 0=v[r])continue;g=!0}d[r]=v&&v[r]||S.style(e,r)}if((u=!S.isEmptyObject(t))||!S.isEmptyObject(d))for(r in f&&1=e.nodeType&&(n.overflow=[h.overflow,h.overflowX,h.overflowY],null(l=v&&v.display)&&(l=Y.get(e,“display”)),“none”=(c=S.css(e,“display”))&&(l?c=l:(le([e],!0),l=e.style.display||l,c=S.css(e,“display”),le([e]))),(“inline”===c||“inline-block”=c&&null!=l)&&“none”=S.css(e,“float”)&&(u||(p.done(function(){h.display=l}),nulll&&(c=h.display,l=“none”=c?"":c)),h.display=“inline-block”)),n.overflow&&(h.overflow=“hidden”,p.always(function(){h.overflow=n.overflow[0],h.overflowX=n.overflow[1],h.overflowY=n.overflow[2]})),u=!1,d)u||(v?“hidden"in v&&(g=v.hidden):v=Y.access(e,“fxshow”,{display:l}),o&&(v.hidden=!g),g&&le([e],!0),p.done(function(){for(r in g||le([e]),Y.remove(e,“fxshow”),d)S.style(e,r,d[r])})),u=ut(g?v[r]:0,r,p),r in v||(v[r]=u.start,g&&(u.end=u.start,u.start=0))}],prefilter:function(e,t){t?lt.prefilters.unshift(e):lt.prefilters.push(e)}}),S.speed=function(e,t,n){var r=e&&“object"typeof e?S.extend({},e):{complete:n||!n&&t||m(e)&&e,duration:e,easing:n&&t||t&&!m(t)&&t};return S.fx.off?r.duration=0:“number”!=typeof r.duration&&(r.duration in S.fx.speeds?r.duration=S.fx.speeds[r.duration]:r.duration=S.fx.speeds._default),null!=r.queue&&!0!r.queue||(r.queue=“fx”),r.old=r.complete,r.complete=function(){m(r.old)&&r.old.call(this),r.queue&&S.dequeue(this,r.queue)},r},S.fn.extend({fadeTo:function(e,t,n,r){return this.filter(ae).css(“opacity”,0).show().end().animate({opacity:t},e,n,r)},animate:function(t,e,n,r){var i=S.isEmptyObject(t),o=S.speed(e,n,r),a=function(){var e=lt(this,S.extend({},t),o);(i||Y.get(this,“finish”))&&e.stop(!0)};return a.finish=a,i||!1=o.queue?this.each(a):this.queue(o.queue,a)},stop:function(i,e,o){var a=function(e){var t=e.stop;delete e.stop,t(o)};return"string"!=typeof i&&(o=e,e=i,i=void 0),e&&this.queue(i||“fx”,[]),this.each(function(){var e=!0,t=null!=i&&i+“queueHooks”,n=S.timers,r=Y.get(this);if(t)r[t]&&r[t].stop&&a(r[t]);else for(t in r)r[t]&&r[t].stop&&it.test(t)&&a(r[t]);for(t=n.length;t–;)n[t].elem!this||null!=i&&n[t].queue!i||(n[t].anim.stop(o),e=!1,n.splice(t,1));!e&&o||S.dequeue(this,i)})},finish:function(a){return!1!a&&(a=a||“fx”),this.each(function(){var e,t=Y.get(this),n=t[a+“queue”],r=t[a+“queueHooks”],i=S.timers,o=n?n.length:0;for(t.finish=!0,S.queue(this,a,[]),r&&r.stop&&r.stop.call(this,!0),e=i.length;e–;)i[e].elem=this&&i[e].queue=a&&(i[e].anim.stop(!0),i.splice(e,1));for(e=0;e<o;e++)n[e]&&n[e].finish&&n[e].finish.call(this);delete t.finish})}}),S.each([“toggle”,“show”,“hide”],function(e,r){var i=S.fn[r];S.fn[r]=function(e,t,n){return nulle||“boolean"typeof e?i.apply(this,arguments):this.animate(st(r,!0),e,t,n)}}),S.each({slideDown:st(“show”),slideUp:st(“hide”),slideToggle:st(“toggle”),fadeIn:{opacity:“show”},fadeOut:{opacity:“hide”},fadeToggle:{opacity:“toggle”}},function(e,r){S.fn[e]=function(e,t,n){return this.animate(r,e,t,n)}}),S.timers=[],S.fx.tick=function(){var e,t=0,n=S.timers;for(Ze=Date.now();t<n.length;t++)(e=n[t])()||n[t]!e||n.splice(t–,1);n.length||S.fx.stop(),Ze=void 0},S.fx.timer=function(e){S.timers.push(e),S.fx.start()},S.fx.interval=13,S.fx.start=function(){et||(et=!0,ot())},S.fx.stop=function(){et=null},S.fx.speeds={slow:600,fast:200,default:400},S.fn.delay=function(r,e){return r=S.fx&&S.fx.speeds[r]||r,e=e||“fx”,this.queue(e,function(e,t){var n=C.setTimeout(e,r);t.stop=function(){C.clearTimeout(n)}})},tt=E.createElement(“input”),nt=E.createElement(“select”).appendChild(E.createElement(“option”)),tt.type=“checkbox”,y.checkOn=""!==tt.value,y.optSelected=nt.selected,(tt=E.createElement(“input”)).value=“t”,tt.type=“radio”,y.radioValue=“t”===tt.value;var ct,ft=S.expr.attrHandle;S.fn.extend({attr:function(e,t){return KaTeX parse error: Expected 'EOF', got '}' at position 37: …guments.length)}̲,removeAttr:fun…/i,dt=/^(?:a|area)$/i;function ht(e){return(e.match§||[]).join(" “)}function gt(e){return e.getAttribute&&e.getAttribute(“class”)||”"}function vt(e){return Array.isArray(e)?e:“string”==typeof e&&e.match§||[]}S.fn.extend({prop:function(e,t){return KaTeX parse error: Expected 'EOF', got '}' at position 37: …guments.length)}̲,removeProp:fun…/,xt=function(e){e.stopPropagation()};S.extend(S.event,{trigger:function(e,t,n,r){var i,o,a,s,u,l,c,f,p=[n||E],d=v.call(e,“type”)?e.type:e,h=v.call(e,“namespace”)?e.namespace.split("."):[];if(o=f=a=n=n||E,3!==n.nodeType&&8!==n.nodeType&&!mt.test(d+S.event.triggered)&&(-1<d.indexOf(".")&&(d=(h=d.split(".")).shift(),h.sort()),u=d.indexOf(":")<0&&“on”+d,(e=e[S.expando]?e:new S.Event(d,“object”==typeof e&&e)).isTrigger=r?2:3,e.namespace=h.join("."),e.rnamespace=e.namespace?new RegExp("(^|\.)"+h.join("\.(?:.*\.|)")+"(\.|KaTeX parse error: Expected '}', got '&' at position 155: …ly(n,t))){if(!r&̲&!c.noBubble&&!…/,Et=/\r?\n/g,St=/^(?:submit|button|image|reset|file)KaTeX parse error: Expected '}', got '&' at position 163: …ject"==typeof t&̲&null!=t?e:"")+…/,Dt=/([?&])=[&]*/,qt=/(.?):[ \t]([\r\n]*)$/gm,Lt=/^(?:GET|HEAD)$/,Ht=////,Ot={},Pt={},Rt="/".concat(""),Mt=E.createElement(“a”);function It(o){return function(e,t){“string”!=typeof e&&(t=e,e="");var n,r=0,i=e.toLowerCase().match§||[];if(m(t))while(n=i[r++])"+"===n[0]?(n=n.slice(1)||"",(o[n]=o[n]||[]).unshift(t)):(o[n]=o[n]||[]).push(t)}}function Wt(t,i,o,a){var s={},u=t=Pt;function l(e){var r;return s[e]=!0,S.each(t[e]||[],function(e,t){var n=t(i,o,a);return"string"!=typeof n||u||s[n]?u?!(r=n):void 0:(i.dataTypes.unshift(n),l(n),!1)}),r}return l(i.dataTypes[0])||!s[""]&&l("")}function Ft(e,t){var n,r,i=S.ajaxSettings.flatOptions||{};for(n in t)void 0!t[n]&&((i[n]?e:r||(r={}))[n]=t[n]);return r&&S.extend(!0,e,r),e}Mt.href=bt.href,S.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:bt.href,type:“GET”,isLocal:/^(?:about|app|app-storage|.±extension|file|res|widget)😒/.test(bt.protocol),global:!0,processData:!0,async:!0,contentType:“application/x-www-form-urlencoded; charset=UTF-8”,accepts:{"":Rt,text:“text/plain”,html:“text/html”,xml:“application/xml, text/xml”,json:“application/json, text/javascript”},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:“responseXML”,text:“responseText”,json:“responseJSON”},converters:{" text":String,“text html”:!0,“text json”:JSON.parse,“text xml”:S.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?Ft(Ft(e,S.ajaxSettings),t):Ft(S.ajaxSettings,e)},ajaxPrefilter:It(Ot),ajaxTransport:It(Pt),ajax:function(e,t){“object"typeof e&&(t=e,e=void 0),t=t||{};var c,f,p,n,d,r,h,g,i,o,v=S.ajaxSetup({},t),y=v.context||v,m=v.context&&(y.nodeType||y.jquery)?S(y):S.event,x=S.Deferred(),b=S.Callbacks(“once memory”),w=v.statusCode||{},a={},s={},u=“canceled”,T={readyState:0,getResponseHeader:function(e){var t;if(h){if(!n){n={};while(t=qt.exec§)n[t[1].toLowerCase()+" “]=(n[t[1].toLowerCase()+” “]||[]).concat(t[2])}t=n[e.toLowerCase()+” "]}return nullt?null:t.join(”, ")},getAllResponseHeaders:function(){return h?p:null},setRequestHeader:function(e,t){return nullh&&(e=s[e.toLowerCase()]=s[e.toLowerCase()]||e,a[e]=t),this},overrideMimeType:function(e){return nullh&&(v.mimeType=e),this},statusCode:function(e){var t;if(e)if(h)T.always(e[T.status]);else for(t in e)w[t]=[w[t],e[t]];return this},abort:function(e){var t=e||u;return c&&c.abort(t),l(0,t),this}};if(x.promise(T),v.url=((e||v.url||bt.href)+”").replace(Ht,bt.protocol+"//"),v.type=t.method||t.type||v.method||v.type,v.dataTypes=(v.dataType||"*").toLowerCase().match§||[""],nullv.crossDomain){r=E.createElement(“a”);try{r.href=v.url,r.href=r.href,v.crossDomain=Mt.protocol+”//”+Mt.host!=r.protocol+"//"+r.host}catch(e){v.crossDomain=!0}}if(v.data&&v.processData&&“string”!=typeof v.data&&(v.data=S.param(v.data,v.traditional)),Wt(Ot,v,t,T),h)return T;for(i in(g=S.event&&v.global)&&0S.active++&&S.event.trigger(“ajaxStart”),v.type=v.type.toUpperCase(),v.hasContent=!Lt.test(v.type),f=v.url.replace(jt,""),v.hasContent?v.data&&v.processData&&0=(v.contentType||"").indexOf(“application/x-www-form-urlencoded”)&&(v.data=v.data.replace(Nt,"+")):(o=v.url.slice(f.length),v.data&&(v.processData||“string"typeof v.data)&&(f+=(Tt.test(f)?"&":"?")+v.data,delete v.data),!1=v.cache&&(f=f.replace(Dt,“KaTeX parse error: Expected 'EOF', got '&' at position 20: …o=(Tt.test(f)?"&̲":"?")+"_="+wt.…t=S.ajaxSettings.xhr();y.cors=!!$t&&“withCredentials"in t , y . a j a x = t,y.ajax= t,y.ajax=t=!!KaTeX parse error: Expected '}', got 'EOF' at end of input: …o,a;if(y.cors||t&&!i.crossDomain)return{send:function(e,t){var n,r=i.xhr();if(r.open(i.type,i.url,i.async,i.username,i.password),i.xhrFields)for(n in i.xhrFields)r[n]=i.xhrFields[n];for(n in i.mimeType&&r.overrideMimeType&&r.overrideMimeType(i.mimeType),i.crossDomain||e[“X-Requested-With”]||(e[“X-Requested-With”]=“XMLHttpRequest”),e)r.setRequestHeader(n,e[n]);o=function(e){return function(){o&&(o=a=r.οnlοad=r.οnerrοr=r.οnabοrt=r.ontimeout=r.onreadystatechange=null,“abort”=e?r.abort():“error”=e?“number”!=typeof r.status?t(0,“error”):t(r.status,r.statusText):t(Bt[r.status]||r.status,r.statusText,“text”!(r.responseType||“text”)||“string”!=typeof r.responseText?{binary:r.response}:{text:r.responseText},r.getAllResponseHeaders()))}},r.οnlοad=o(),a=r.οnerrοr=r.ontimeout=o(“error”),void 0!r.onabort?r.οnabοrt=a:r.onreadystatechange=function(){4=r.readyState&&C.setTimeout(function(){o&&a()})},o=o(“abort”);try{r.send(i.hasContent&&i.data||null)}catch(e){if(o)throw e}},abort:function(){o&&o()}}}),S.ajaxPrefilter(function(e){e.crossDomain&&(e.contents.script=!1)}),S.ajaxSetup({accepts:{script:“text/javascript, application/javascript, application/ecmascript, application/x-ecmascript”},contents:{script:/\b(?:java|ecma)script\b/},converters:{“text script”:function(e){return S.globalEval(e),e}}}),S.ajaxPrefilter(“script”,function(e){void 0=e.cache&&(e.cache=!1),e.crossDomain&&(e.type=“GET”)}),S.ajaxTransport(“script”,function(n){var r,i;if(n.crossDomain||n.scriptAttrs)return{send:function(e,t){r=S(”

运行如下:

web手风琴效果

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值