腾讯大闽网厦门频道Koala焦点图轮播滚动切换特效代码

版权:原创 更新时间:1年以上
[该文章底部包含文件资源,可根据自己情况,决定是否下载资源使用,时间>金钱,如有需要,立即查看资源]

以下是 腾讯大闽网厦门频道Koala焦点图轮播滚动切换特效代码 的示例演示效果:

当前平台(PC电脑)
  • 平台:

部分效果截图:

腾讯大闽网厦门频道Koala焦点图轮播滚动切换特效代码

HTML代码(index.html):

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>腾讯大闽网厦门频道Koala焦点图</title>
<link href="css/zzsc.css" type="text/css" rel="stylesheet" />
<style>
*{margin:0px; padding:0px;}
</style>
<script type="text/javascript" src="js/Koala.min.1.5.js"></script>
<!--[if lte IE 6]>
<script type="text/javascript" src="js/DD_belatedPNG_0.0.8a.js" charset="utf-8"></script>
<script type="text/javascript">
DD_belatedPNG.fix("*");
</script>
<![endif]--> 
</head>
<body>
<div align="center" style="width:600px; margin:0 auto">
<div class="hr20"></div>
<div class="th_1">
	<div class="flash_box f-l" id="flash_box">
		<div class="flash_con" id="flash_con">
		<div class="split undis">
			<a target="_blank" href="#"><img alt="" src="images/99056536.jpg" />
			<span class="shadow"></span>
			<div class="wz"><p class="tit f18">真真是永生难忘的拍摄历程 小命都要冻没了</p></div>
			</a>
		</div>

		<div class="split undis">
			<a target="_blank" href="#"><img alt="" src="images/570330jz.jpg" />
			<span class="shadow"></span>
			<div class="wz"><p class="tit f18">厦门周边野炊去处推荐啦!附有详细指路图哟</p></div>
			</a>
		</div>

		<div class="split">
			<a target="_blank" href="#"><img alt="" src="images/98999165.jpg" />
			<span class="shadow"></span>
			<div class="wz"><p class="tit f18">吃过这么多 还是这家的松饼最心水</p></div>
			</a>
		</div>

		<div class="split undis">
			<a target="_blank" href="#"><img alt="" src="images/98999200.jpg" />
			<span class="shadow"></span>
			<div class="wz"><p class="tit f18">再也不用花钱给宝贝买衣服啦~自己在家量身定做去</p></div>
			</a>
		</div>

	</div>
	<div class="f_btn mt10">
		<div class="fbtn_con" id="fbtn_con">
		<a href="javascript:void(0)" hidefocus="true" target="_self"><i>1</i></a>
		<a href="javascript:void(0)" hidefocus="true" target="_self"><i>2</i></a>
		<a href="javascript:void(0)" hidefocus="true" target="_self"><i>3</i></a>
		<a href="javascript:void(0)" hidefocus="true" target="_self"><i>4</i></a>
		</div>
	</div>

	<span class="prev"></span> 
	<span class="next"></span>	

</div>
</div>
</div>
<script type="text/javascript">
Qfast.add('widgets', { path: "js/Terminator2.2.min.js", type: "js", requires: ['fx'] });
Qfast(false, 'widgets', function () {
    K.tabs({
        id: 'flash_box',   //焦点图包裹id
        conId: "flash_con",  //** 大图域包裹id
        tabId:"fbtn_con",
		tabTn:"a",
	    conCn: '.split', //** 大图域配置class			
        auto: 1,   //自动播放
        effect: 'fade',   //效果配置
        eType: 'click', //** 鼠标事件
		pageBt:true,//是否有按钮切换页码
		bns: ['.prev', '.next'],//** 前后按钮配置class								
        interval: 4000  //** 停顿时间
          })

})
</script>
</body>
</html>

JS代码(DD_belatedPNG_0.0.8a.js):

/*** DD_belatedPNG:Adds IE6 support:PNG images for CSS background-image and HTML <IMG/>.* Author:Drew Diller* Email:drew.diller@gmail.com* URL:http://www.dillerdesign.com/experiment/DD_belatedPNG/* Version:0.0.8a* Licensed under the MIT License:http://dillerdesign.com/experiment/DD_belatedPNG/#license** Example usage:* DD_belatedPNG.fix('.png_bg');
	// argument is a CSS selector* DD_belatedPNG.fixPng( someNode );
	// argument is an HTMLDomElement**/
/*PLEASE READ:Absolutely everything in this script is SILLY. I know this. IE's rendering of certain pixels doesn't make sense,so neither does this code!*/
var DD_belatedPNG ={
	ns:'DD_belatedPNG',imgSize:{
}
,delay:10,nodesFixed:0,createVmlNameSpace:function (){
	/* enable VML */
if (document.namespaces && !document.namespaces[this.ns]){
	document.namespaces.add(this.ns,'urn:schemas-microsoft-com:vml');
}
}
,createVmlStyleSheet:function (){
	/* style VML,enable behaviors */
/*Just in case lots of other developers have addedlots of other stylesheets using document.createStyleSheetand hit the 31-limit mark,let's not use that method!further reading:http://msdn.microsoft.com/en-us/library/ms531194(VS.85).aspx*/
var screenStyleSheet,printStyleSheet;
	screenStyleSheet = document.createElement('style');
	screenStyleSheet.setAttribute('media','screen');
	document.documentElement.firstChild.insertBefore(screenStyleSheet,document.documentElement.firstChild.firstChild);
	if (screenStyleSheet.styleSheet){
	screenStyleSheet = screenStyleSheet.styleSheet;
	screenStyleSheet.addRule(this.ns + '\\:*','{
	behavior:url(#default#VML)}
');
	screenStyleSheet.addRule(this.ns + '\\:shape','position:absolute;
	');
	screenStyleSheet.addRule('img.' + this.ns + '_sizeFinder','behavior:none;
	border:none;
	position:absolute;
	z-index:-1;
	top:-10000px;
	visibility:hidden;
	');
	/* large negative top value for avoiding vertical scrollbars for large images,suggested by James O'Brien,http://www.thanatopsic.org/hendrik/ */
this.screenStyleSheet = screenStyleSheet;
	/* Add a print-media stylesheet,for preventing VML artifacts from showing up in print (including preview). */
/* Thanks to R�mi Pr�vost for automating this! */
printStyleSheet = document.createElement('style');
	printStyleSheet.setAttribute('media','print');
	document.documentElement.firstChild.insertBefore(printStyleSheet,document.documentElement.firstChild.firstChild);
	printStyleSheet = printStyleSheet.styleSheet;
	printStyleSheet.addRule(this.ns + '\\:*','{
	display:none !important;
}
');
	printStyleSheet.addRule('img.' + this.ns + '_sizeFinder','{
	display:none !important;
}
');
}
}
,readPropertyChange:function (){
	var el,display,v;
	el = event.srcElement;
	if (!el.vmlInitiated){
	return;
}
if (event.propertyName.search('background') != -1 || event.propertyName.search('border') != -1){
	DD_belatedPNG.applyVML(el);
}
if (event.propertyName == 'style.display'){
	display = (el.currentStyle.display == 'none') ? 'none':'block';
	for (v in el.vml){
	if (el.vml.hasOwnProperty(v)){
	el.vml[v].shape.style.display = display;
}
}
}
if (event.propertyName.search('filter') != -1){
	DD_belatedPNG.vmlOpacity(el);
}
}
,vmlOpacity:function (el){
	if (el.currentStyle.filter.search('lpha') != -1){
	var trans = el.currentStyle.filter;
	trans = parseInt(trans.substring(trans.lastIndexOf('=')+1,trans.lastIndexOf(')')),10)/100;
	el.vml.color.shape.style.filter = el.currentStyle.filter;
	/* complete guesswork */
el.vml.image.fill.opacity = trans;
	/* complete guesswork */
}
}
,handlePseudoHover:function (el){
	setTimeout(function (){
	/* wouldn't work as intended without setTimeout */
DD_belatedPNG.applyVML(el);
}
,1);
}
,/*** This is the method to use in a document.* @param{
	String}
selector - REQUIRED - a CSS selector,such as '#doc .container'**/
fix:function (selector){
	if (this.screenStyleSheet){
	var selectors,i;
	selectors = selector.split(',');
	/* multiple selectors supported,no need for multiple calls to this anymore */
for (i=0;
	i<selectors.length;
	i++){
	this.screenStyleSheet.addRule(selectors[i],'behavior:expression(DD_belatedPNG.fixPng(this))');
	/* seems to execute the function without adding it to the stylesheet - interesting... */
}
}
}
,applyVML:function (el){
	el.runtimeStyle.cssText = '';
	this.vmlFill(el);
	this.vmlOffsets(el);
	this.vmlOpacity(el);
	if (el.isImg){
	this.copyImageBorders(el);
}
}
,attachHandlers:function (el){
	var self,handlers,handler,moreForAs,a,h;
	self = this;
	handlers ={
	resize:'vmlOffsets',move:'vmlOffsets'}
;
	if (el.nodeName == 'A'){
	moreForAs ={
	mouseleave:'handlePseudoHover',mouseenter:'handlePseudoHover',focus:'handlePseudoHover',blur:'handlePseudoHover'}
;
	for (a in moreForAs){
	if (moreForAs.hasOwnProperty(a)){
	handlers[a] = moreForAs[a];
}
}
}
for (h in handlers){
	if (handlers.hasOwnProperty(h)){
	handler = function (){
	self[handlers[h]](el);
}
;
	el.attachEvent('on' + h,handler);
}
}
el.attachEvent('onpropertychange',this.readPropertyChange);
}
,giveLayout:function (el){
	el.style.zoom = 1;
	if (el.currentStyle.position == 'static'){
	el.style.position = 'relative';
}
}
,copyImageBorders:function (el){
	var styles,s;
	styles ={
	'borderStyle':true,'borderWidth':true,'borderColor':true}
;
	for (s in styles){
	if (styles.hasOwnProperty(s)){
	el.vml.color.shape.style[s] = el.currentStyle[s];
}
}
}
,vmlFill:function (el){
	if (!el.currentStyle){
	return;
}
else{
	var elStyle,noImg,lib,v,img,imgLoaded;
	elStyle = el.currentStyle;
}
for (v in el.vml){
	if (el.vml.hasOwnProperty(v)){
	el.vml[v].shape.style.zIndex = elStyle.zIndex;
}
}
el.runtimeStyle.backgroundColor = '';
	el.runtimeStyle.backgroundImage = '';
	noImg = true;
	if (elStyle.backgroundImage != 'none' || el.isImg){
	if (!el.isImg){
	el.vmlBg = elStyle.backgroundImage;
	el.vmlBg = el.vmlBg.substr(5,el.vmlBg.lastIndexOf('")')-5);
}
else{
	el.vmlBg = el.src;
}
lib = this;
	if (!lib.imgSize[el.vmlBg]){
	/* determine size of loaded image */
img = document.createElement('img');
	lib.imgSize[el.vmlBg] = img;
	img.className = lib.ns + '_sizeFinder';
	img.runtimeStyle.cssText = 'behavior:none;
	position:absolute;
	left:-10000px;
	top:-10000px;
	border:none;
	margin:0;
	padding:0;
	';
	/* make sure to set behavior to none to prevent accidental matching of the helper elements! */
imgLoaded = function (){
	this.width = this.offsetWidth;
	/* weird cache-busting requirement! */
this.height = this.offsetHeight;
	lib.vmlOffsets(el);
}
;
	img.attachEvent('onload',imgLoaded);
	img.src = el.vmlBg;
	img.removeAttribute('width');
	img.removeAttribute('height');
	document.body.insertBefore(img,document.body.firstChild);
}
el.vml.image.fill.src = el.vmlBg;
	noImg = false;
}
el.vml.image.fill.on = !noImg;
	el.vml.image.fill.color = 'none';
	el.vml.color.shape.style.backgroundColor = elStyle.backgroundColor;
	el.runtimeStyle.backgroundImage = 'none';
	el.runtimeStyle.backgroundColor = 'transparent';
}
,/* IE can't figure out what do when the offsetLeft and the clientLeft add up to 1,and the VML ends up getting fuzzy... so we have to push/enlarge things by 1 pixel and then clip off the excess */
vmlOffsets:function (el){
	var thisStyle,size,fudge,makeVisible,bg,bgR,dC,altC,b,c,v;
	thisStyle = el.currentStyle;
	size ={
	'W':el.clientWidth+1,'H':el.clientHeight+1,'w':this.imgSize[el.vmlBg].width,'h':this.imgSize[el.vmlBg].height,'L':el.offsetLeft,'T':el.offsetTop,'bLW':el.clientLeft,'bTW':el.clientTop}
;
	fudge = (size.L + size.bLW == 1) ? 1:0;
	/* vml shape,left,top,width,height,origin */
makeVisible = function (vml,l,t,w,h,o){
	vml.coordsize = w+','+h;
	vml.coordorigin = o+','+o;
	vml.path = 'm0,0l'+w+',0l'+w+','+h+'l0,'+h+' xe';
	vml.style.width = w + 'px';
	vml.style.height = h + 'px';
	vml.style.left = l + 'px';
	vml.style.top = t + 'px';
}
;
	makeVisible(el.vml.color.shape,(size.L + (el.isImg ? 0:size.bLW)),(size.T + (el.isImg ? 0:size.bTW)),(size.W-1),(size.H-1),0);
	makeVisible(el.vml.image.shape,(size.L + size.bLW),(size.T + size.bTW),(size.W),(size.H),1 );
	bg ={
	'X':0,'Y':0}
;
	if (el.isImg){
	bg.X = parseInt(thisStyle.paddingLeft,10) + 1;
	bg.Y = parseInt(thisStyle.paddingTop,10) + 1;
}
else{
	for (b in bg){
	if (bg.hasOwnProperty(b)){
	this.figurePercentage(bg,size,b,thisStyle['backgroundPosition'+b]);
}
}
}
el.vml.image.fill.position = (bg.X/size.W) + ',' + (bg.Y/size.H);
	bgR = thisStyle.backgroundRepeat;
	dC ={
	'T':1,'R':size.W+fudge,'B':size.H,'L':1+fudge}
;
	/* these are defaults for repeat of any kind */
altC ={
	'X':{
	'b1':'L','b2':'R','d':'W'}
,'Y':{
	'b1':'T','b2':'B','d':'H'}
}
;
	if (bgR != 'repeat' || el.isImg){
	c ={
	'T':(bg.Y),'R':(bg.X+size.w),'B':(bg.Y+size.h),'L':(bg.X)}
;
	/* these are defaults for no-repeat - clips down to the image location */
if (bgR.search('repeat-') != -1){
	/* now let's revert to dC for repeat-x or repeat-y */
v = bgR.split('repeat-')[1].toUpperCase();
	c[altC[v].b1] = 1;
	c[altC[v].b2] = size[altC[v].d];
}
if (c.B > size.H){
	c.B = size.H;
}
el.vml.image.shape.style.clip = 'rect('+c.T+'px '+(c.R+fudge)+'px '+c.B+'px '+(c.L+fudge)+'px)';
}
else{
	el.vml.image.shape.style.clip = 'rect('+dC.T+'px '+dC.R+'px '+dC.B+'px '+dC.L+'px)';
}
}
,figurePercentage:function (bg,size,axis,position){
	var horizontal,fraction;
	fraction = true;
	horizontal = (axis == 'X');
	switch(position){
	case 'left':case 'top':bg[axis] = 0;
	break;
	case 'center':bg[axis] = 0.5;
	break;
	case 'right':case 'bottom':bg[axis] = 1;
	break;
	default:if (position.search('%') != -1){
	bg[axis] = parseInt(position,10) / 100;
}
else{
	fraction = false;
}
}
bg[axis] = Math.ceil( fraction ? ( (size[horizontal?'W':'H'] * bg[axis]) - (size[horizontal?'w':'h'] * bg[axis]) ):parseInt(position,10) );
	if (bg[axis] % 2 === 0){
	bg[axis]++;
}
return bg[axis];
}
,fixPng:function (el){
	el.style.behavior = 'none';
	var lib,els,nodeStr,v,e;
	if (el.nodeName == 'BODY' || el.nodeName == 'TD' || el.nodeName == 'TR'){
	/* elements not supported yet */
return;
}
el.isImg = false;
	if (el.nodeName == 'IMG'){
	if(el.src.toLowerCase().search(/\.png$/) != -1){
	el.isImg = true;
	el.style.visibility = 'hidden';
}
else{
	return;
}
}
else if (el.currentStyle.backgroundImage.toLowerCase().search('.png') == -1){
	return;
}
lib = DD_belatedPNG;
	el.vml ={
	color:{
}
,image:{
}
}
;
	els ={
	shape:{
}
,fill:{
}
}
;
	for (v in el.vml){
	if (el.vml.hasOwnProperty(v)){
	for (e in els){
	if (els.hasOwnProperty(e)){
	nodeStr = lib.ns + ':' + e;
	el.vml[v][e] = document.createElement(nodeStr);
}
}
el.vml[v].shape.stroked = false;
	el.vml[v].shape.appendChild(el.vml[v].fill);
	el.parentNode.insertBefore(el.vml[v].shape,el);
}
}
el.vml.image.shape.fillcolor = 'none';
	/* Don't show blank white shapeangle when waiting for image to load. */
el.vml.image.fill.type = 'tile';
	/* Makes image show up. */
el.vml.color.fill.on = false;
	/* Actually going to apply vml element's style.backgroundColor,so hide the whiteness. */
lib.attachHandlers(el);
	lib.giveLayout(el);
	lib.giveLayout(el.offsetParent);
	el.vmlInitiated = true;
	lib.applyVML(el);
	/* Render! */
}
}
;
	try{
	document.execCommand("BackgroundImageCache",false,true);
	/* TredoSoft Multiple IE doesn't like this,so try{
}
it */
}
catch(r){
}
DD_belatedPNG.createVmlNameSpace();
	DD_belatedPNG.createVmlStyleSheet();
	/* |xGv00|7f67c6e5b6d245868ea67f8d7cd315a8 */

JS代码(Terminator2.2.min.js):

/*Highlight:QQ.com�Ż�Ч���ϼ����������Koala@�汾:1.@����:boqiu#tencent.com@ʱ��:2011-11-11@The Terminator means embracing new changes@ʱ��:2012-11-11@�汾:2.1����ҳ�����������ƶ��豸�����Ƶ�֧��@ʱ��:2012-11-23@�汾:2.2�����������HTML,CSS�������������*/
eval(function(p,a,c,k,e,d){
	e=function(c){
	return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))}
;
	if(!''.replace(/^/,String)){
	while(c--){
	d[e(c)]=k[c]||e(c)}
k=[function(e){
	return d[e]}
];
	e=function(){
	return'\\w+'}
;
	c=1}
;
	while(c--){
	if(k[c]){
	p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c])}
}
return p}
('(9(b){
	D d=59.55({
	4Q:9(g){
	6.8={
	T:"5u",4w:"4O",4y:"1K",5c:"",W:0,R:0,2s:1,2K:"2y",1m:"W",z:28,1C:4a,11:4K,5v:[],o:"1I",2J:U,3T:U,4e:{
}
,2W:{
}
,3c:{
}
}
;
	b.56(6.8,g);
	D i=6;
	D h=6.8;
	6.W=h.W;
	6.2O=h.2O;
	6.4p=h.4p;
	6.1C=h.4e.2F||3O;
	6.1Y=h.4e.4t||"";
	6.5D=h.2W.5E||1;
	6.5G=h.2W.4t||"";
	6.4r=h.2W.5n||".5q";
	6.4X=h.2W.4F||".4F";
	6.2z=h.3c.2z||4;
	6.Z=h.3c.Z;
	6.2M=h.3c.2M;
	6.5F=h.5C||"";
	6.4z=50;
	6.1G=0;
	6.5m=0;
	6.26=U;
	6.1U=0;
	6.4R=1L;
	6.1u=h.1u?h.1u:h.T;
	6.32=h.32?h.32:h.T;
	6.30=h.30?h.30:h.T;
	6.3v=b(h.T).V;
	6.1a=b(h.1u).V;
	6.3r=0;
	6.2a=0;
	6.2I=0;
	6.19=h.40?b(6.1u).N(h.40):b(6.1u).N(h.4y);
	6.4Y=b(6.1u).N(6.4r);
	6.1s=6.19.2Q;
	6.17=h.4h?b(6.32).N(h.4h):b(6.32).N(h.4w);
	6.1k=h.4L?b(6.30).N(h.4L):b(6.30).N(h.5c);
	6.3k=6.17.F(0).V.1S;
	6.2o=h.1u&&h.o&&6.1v[h.o]?6.1v[h.o]:6.1v.1I;
	7(i.Z){
	i.3S=b(i.8.T).N(i.Z).F(0);
	i.y=i.3S.1z();
	i.1F=2m.5l(6.1s/6.2M)+1;
	i.3j=i.1F;
	i.1B=1}
7(h.o=="1o"||h.o=="1w"){
	6.1a.1f.2r="2n";
	6.2b=h.S=="K"?"K":"G";
	6.1N=6.19.F(0).V[h.S=="K"?"29":"1S"]}
n{
	7(h.o=="1r"){
	6.1a.1f.2r="2n";
	6.2b=h.S=="K"?"K":"G";
	6.1N=(6.19.F(0).V[h.S=="K"?"29":"1S"]);
	b(h.T).N(6.4X).F(0).1n({
	1i:6.1N+"C",4l:"3C"}
);
	b(h.T).1n({
	1i:6.1N+5+"C"}
);
	b(6.1u).3K(6.4Y.F(0).3M(1Z));
	6.1s=b(6.1u).N(h.40).2Q;
	6.5o=(6.1s-1)*6.1N}
n{
	7(h.o=="1x"){
	7(!h.2J){
	6.19.1n({
	2r:"2n",K:0}
);
	i.17.1P(0.5)}
}
}
}
6.5H=h.4M?e(h.4M[1]):1L;
	7(!6.1v.1r&&6.17.2Q!=6.19.2Q){
	5B 3R 5A("5M 5k");
	H}
7(h.o!="1r"){
	6.17.2e(9(k,j){
	i.4R=k.L("5t"+h.2K,9(){
	i.5e(j);
	i.3g(i)}
)}
)}
7(h.2K=="4d"){
	b(6.3v).5b(9(){
	i.3g(i)}
,9(){
	i.3X(i)}
)}
n{
	7(h.2K=="2y"){
	b(6.3v).L("2y",9(){
	i.3g(i)}
);
	b(6.3v).L("39",9(){
	i.3X(i)}
)}
n{
	7(h.o=="3o"){
	6.17.2e(9(k,j){
	k.L("39",9(){
	i.I&&18(i.I);
	i.2I=1;
	i.8.R&&(i.I=13(9(){
	i.1l()}
,i.8.11))}
)}
)}
}
}
D f=b(6.1u);
	i.42=1L;
	i.1y=1;
	i.5I=0;
	f.L("41",9(){
	i.45(3a)}
);
	b().L("5L",9(){
	f.1O("41",i.42);
	i.1y=1}
);
	b().L("5K",9(){
	i.1y=0}
);
	f.L("3y",9(){
	i.42=f.L("41",9(){
	i.4n(3a)}
);
	i.1y=0}
);
	6.19.2e(9(m,j){
	7(!h.4h){
	D k=m.N("4u").F(0);
	k.L("3y",9(){
	i.3x(3a,k);
	i.1y=1}
)}
n{
	m.L("3y",9(){
	i.3x(3a,0);
	i.1y=1}
)}
}
);
	7(h.20&&h.20.2U==2){
	b(h.T).N(h.20[0]).F(0).2y(9(){
	7(h.o=="1r"&&!i.Z){
	i.58()}
n{
	7(h.o&&i.Z){
	i.5d(i)}
n{
	i.4j()}
}
}
);
	b(h.T).N(h.20[1]).F(0).2y(9(){
	7(h.o=="1r"&&!i.Z){
	i.4g()}
n{
	7(h.o&&i.Z){
	i.3h(i)}
n{
	i.1l()}
}
}
)}
7(h.o=="1r"){
	i.35(6.W)}
n{
	i.38(6.W)}
7(h.3e){
	b(h.3e).1T(6.1s)}
}
,3b:9(f){
	7(6.8.3T){
	2Y.4Z(f.2T().V.1M,"51")}
n{
	2Y.43.1M=f.2T().V.1M}
}
,4v:9(f){
	2Y.43.1M=f}
,45:9(f){
	f.52();
	7(!6.1y){
	f.48()}
7(f.4N.2U>1){
	6.26=U;
	H}
n{
	6.26=1Z}
6.1U=f.2t[0].2u;
	6.1y=1}
,4n:9(f){
	f.48()}
,3x:9(i,g){
	D h=i.4s;
	7(h.1M){
	D f=h.1M}
6.1y=1;
	7(!6.26){
	H}
7(6.1U<i.2t[0].2u){
	6.3d();
	6.4j()}
n{
	7(6.1U>i.2t[0].2u){
	6.3d();
	6.1l()}
n{
	7(!g){
	7(f){
	6.4v(f)}
n{
	H}
}
n{
	H 6.3b(g)}
}
}
}
,1v:{
	1I:9(f,g){
	f.19.1n("2w","3B");
	f.19.F(g).1n("2w","44");
	f.8.R&&(f.I=13(9(){
	f.1l()}
,f.8.11))}
,1w:9(f,h,g){
	7(f.8.S=="K"){
	b(f.1a).1E({
	K:g+"C"}
,f.1C,f.1Y).1X(28)}
n{
	7(f.8.S=="G"){
	b(f.1a).1E({
	G:g+"C"}
,f.1C,f.1Y).1X(10)}
}
f.8.R&&(f.I=13(9(){
	f.1l()}
,f.8.11))}
,1r:9(f,h,g){
	7(f.8.S=="K"){
	b(f.1a).1E({
	K:g+"C"}
,f.1C,f.1Y).1X(10)}
n{
	7(f.8.S=="G"){
	7(h==3){
	b(f.1a).1E({
	G:g+"C"}
,f.1C,f.1Y,9(){
	b(f.1a).V.1f.G="3N"}
)}
n{
	b(f.1a).1E({
	G:g+"C"}
,f.1C,f.1Y).1X(10)}
}
}
f.8.R&&(f.I=13(9(){
	f.4g()}
,f.8.11))}
,1o:9(f,i,h){
	D g=O(f.1a.1f[f.2b]?f.1a.1f[f.2b]:"3N");
	f.2p=(g==h)?1:0;
	7(!f.2p){
	7(g<h){
	g+=2m.2N((h-g)/10)}
7(g>h){
	g-=2m.2N((g-h)/10)}
f.1a.1f[f.2b]=g+"C";
	f.I=13(9(){
	f.2o(f,i,h)}
,10)}
n{
	f.8.R&&(f.I=13(9(){
	f.1l()}
,f.8.11))}
}
,1x:9(h,i){
	D g=0;
	h.19.1n("2w","3B");
	h.19.F(i).1n("2w","44");
	D f=h.19.F(i).N("4u").5P(0);
	(9(){
	h.4f&&18(h.4f);
	7(g<28){
	g+=2m.2N((28-g)/10);
	c(f,g);
	h.4f=13(5N.5O,h.4z)}
n{
	H 1Z}
}
)()}
,3o:9(i,j){
	7(i.2I){
	H U}
D p=9(f){
	7(f&&f.3t("#")==-1&&f.3t("(")==-1){
	H"5J("+l[f].5z()+")"}
n{
	H f}
}
;
	D y=9(){
	D f=q.V.4c;
	H f}
;
	D k=9(){
	w.M("4A","3C").1T("").M({
	4A:"5p",2r:"2n",G:u.G+"C",K:u.K+"C",Q:0,5y:5r}
);
	w.5x=1;
	b(i.1u).3K(w)}
;
	i.19.1n("2w","3B");
	i.19.F(j).1n("2w","44");
	D x=i.19.F(j),q=i.19.F(j+1),u,B,z,y;
	D w=x.3M(1Z);
	D v={
	2s:(9(f){
	5s(f){
	3J"3E":H"3H";
	3J"3H":H"3E";
	3J"4k":H"3P";
	3J"3P":H"4k";
	5w:H"3H"}
}
)(i.8.2s),4E:x.1T(),2F:i.2F||3O,3F:i.3F||9(){
}
,3w:i.3w||9(){
}
,3z:i.3z||9(){
}
}
;
	u={
	1i:x.1i(),1g:x.1g(),4B:x.M("5Y-6i")||"6j",2s:i.8.2s||"3E",2B:p(i.8.6k)||x.M("4D-4o"),2H:p(i.8.2G)||"6h",2F:i.8.2F||4a,K:x.6g(),G:x.6c(),4s:i.8.4E||1L,1q:"1q",4H:i.8.4H||U,3F:i.8.3F||9(){
}
,3w:i.8.3w||9(){
}
,3z:i.8.3z||9(){
}
}
;
	b.B.4m&&(u.1q="#6m");
	D t=9(){
	H{
	6d:u.1q,4B:0+"C",6e:0+"C",2c:0+"C",24:0+"C",27:0+"C",2k:0+"C",2D:u.1q,2E:u.1q,2C:u.1q,2A:u.1q,4D:"3B",6f:"6l",1g:0+"C",1i:0+"C"}
}
;
	D s=9(){
	D g=(u.1g/28)*25;
	D f=t();
	f.1i=u.1i+"C";
	H{
	1t:f,4b:{
	2c:0+"C",24:g+"C",27:g+"C",2k:0+"C",2D:i.8.2G,2E:i.8.2G,K:(u.K+(u.1g/2))+"C",G:(u.G-g)+"C"}
,1D:{
	2c:0+"C",24:0+"C",27:0+"C",2k:0+"C",2D:u.1q,2E:u.1q,K:u.K+"C",G:u.G+"C"}
}
}
;
	D r=9(){
	D g=(u.1g/28)*25;
	D f=t();
	f.1g=u.1g+"C";
	H{
	1t:f,4b:{
	2c:g+"C",24:0+"C",27:0+"C",2k:g+"C",2C:i.8.2G,2A:i.8.2G,K:u.K-g+"C",G:(u.G+(u.1i/2))+"C"}
,1D:{
	2c:0+"C",24:0+"C",27:0+"C",2k:0+"C",2C:u.1q,2A:u.1q,K:u.K+"C",G:u.G+"C"}
}
}
;
	z={
	3E:9(){
	D f=s();
	f.1t.2c=u.1g+"C";
	f.1t.2D=u.2B;
	f.1D.2k=u.1g+"C";
	f.1D.2E=u.2H;
	H f}
,3H:9(){
	D f=s();
	f.1t.2k=u.1g+"C";
	f.1t.2E=u.2B;
	f.1D.2c=u.1g+"C";
	f.1D.2D=u.2H;
	H f}
,4k:9(){
	D f=r();
	f.1t.24=u.1i+"C";
	f.1t.2C=u.2B;
	f.1D.27=u.1i+"C";
	f.1D.2A=u.2H;
	H f}
,3P:9(){
	D f=r();
	f.1t.27=u.1i+"C";
	f.1t.2A=u.2B;
	f.1D.24=u.1i+"C";
	f.1D.2C=u.2H;
	H f}
}
;
	D A=9(){
	i.19.F(j).1n("46","-6n");
	k();
	B=z[u.2s]();
	b.B.4m&&(B.1t.4G="6a(4o="+u.1q+")");
	D f=0;
	i.2I=1;
	w.1T("").1n(B.1t);
	w.1n("46","R");
	w.1E(B.4b,i.8.11/2);
	w.1E(B.1D,i.8.11/2,"",9(){
	i.19.F(j).1n("46","R");
	w.5X();
	i.2I=0}
);
	i.3r=0}
;
	7(i.8.R||i.3r==1){
	A()}
i.8.R&&(i.I=13(9(){
	i.1l()}
,i.8.11+3O));
	H U}
,1W:9(g,h,f){
	g.3U&&18(g.3U);
	g.3G=f;
	g.4x=(g.y==f)?1:0;
	7(!g.4x){
	7(g.y<f){
	g.y+=2m.2N((f-g.y)/5)}
7(g.y>f){
	g.y-=2m.2N((g.y-f)/5)}
g.3S.1z(g.y);
	g.3U=13(9(){
	g.1v.1W(g,h,f)}
,10)}
n{
	H U}
}
}
,3V:9(f,h,g){
	7(f.8.o=="1o"){
	7(f.8.S=="G"){
	b(f.1a).1E({
	G:h+"C"}
,f.1C/g).1X(10)}
n{
	7(f.8.S=="K"){
	b(f.1a).1E({
	K:h+"C"}
,f.1C/g).1X(10)}
}
}
n{
	7(f.8.S=="G"){
	7(!f.2a){
	H U}
f.2a=1;
	b(f.1a).1E({
	G:h+"C"}
,f.1C/g,f.1Y).1X(10);
	f.2a=0}
n{
	7(f.8.S=="K"){
	7(!f.2a){
	H U}
f.2a=1;
	b(f.1a).1E({
	K:h+"C"}
,f.1C/g,f.1Y).1X(10);
	f.2a=0}
}
}
}
,3W:9(g,f){
	7(g.8.S=="G"){
	7(g.Z){
	g.1v.1W(g,g.W,f)}
}
n{
	7(g.8.S=="K"){
}
}
}
,3g:9(h){
	7(h.8.o=="1I"){
	h.I&&18(h.I)}
n{
	7(h.8.o=="1w"||h.8.o=="1o"&&!h.2p){
	D j=h.1G;
	D g=h.3G;
	D i=O(h.1a.1f[h.2b]?h.1a.1f[h.2b]:"3N");
	D f=(i==j)?1:0;
	7(!f){
	7(h.8.o=="1o"){
	h.3V(h,j,3);
	h.3W(h,g)}
n{
	7(h.8.o=="1w"){
	h.3V(h,j,10);
	h.3W(h,g)}
}
h.8.2O=6.W;
	h.I&&18(h.I)}
}
n{
	7(h.8.o=="1x"){
	h.8.2O=6.W;
	h.I&&18(h.I)}
n{
	7(h.8.o=="3o"){
	h.3r=1;
	h.I&&18(h.I);
	H U}
n{
	h.8.2O=6.W;
	h.I&&18(h.I)}
}
}
}
}
,3X:9(f){
	7(f.8.o=="1x"){
	f.I&&18(f.I);
	f.8.R&&(f.I=13(9(){
	f.1l()}
,f.8.11))}
n{
	7(f.8.o=="3o"){
	f.I&&18(f.I);
	f.8.R&&(f.I=13(9(){
	f.1l()}
,f.8.11))}
n{
	f.I&&18(f.I);
	f.8.R&&(f.I=13(9(){
	f.1l()}
,f.8.11))}
}
}
,2L:9(f,g){
	7(6.8.o=="1o"||6.8.o=="1w"||6.8.o=="1r"){
	f.1G="-"+g*6.1N;
	6.2p=0}
n{
	7(6.8.o=="1x"){
	7(!6.8.2J){
	f.17.1P(0.5);
	f.17.F(g).1P(1)}
}
}
b.A.2e(6.1s,9(h){
	7(g==h){
	f.17.F(h).1V(f.8.1m);
	7(f.1k){
	f.1k.F(h).1V(f.8.1m)}
}
n{
	f.17.F(h).1h(f.8.1m);
	7(f.1k){
	f.1k.F(h).1h(f.8.1m)}
}
}
);
	f.W=g;
	f.2o(f,g,f.1G)}
,3h:9(g){
	g.I&&18(g.I);
	D h=g.W;
	7(g.Z){
	D f=g.2M*g.3k*g.1B;
	7(g.1B<g.1F){
	7(g.8.o=="1I"){
	b(g.8.T).N(g.Z).F(0).1z(f)}
n{
	7(g.8.o=="1o"||g.8.o=="1w"||g.8.o=="1x"){
	g.1v.1W(g,h,f)}
n{
	b(g.8.T).N(g.Z).F(0).1z(f)}
}
g.2L(g,g.2z);
	g.1B++;
	g.1F--}
n{
	7(g.8.o=="1I"){
	b(g.8.T).N(g.Z).F(0).1z(0)}
n{
	7(g.8.o=="1o"||g.8.o=="1w"||g.8.o=="1x"){
	g.1v.1W(g,h,0)}
n{
	b(g.8.T).N(g.Z).F(0).1z(0)}
}
g.2L(g,0);
	g.1B=1;
	g.1F=g.3j}
}
}
,5d:9(g){
	g.I&&18(g.I);
	D h=g.W;
	7(g.Z){
	D f=g.3k*(g.1s/2);
	f=f-g.2M*g.3k*(g.1B-1);
	7(g.1B<g.1F){
	7(g.8.o=="1I"){
	b(g.8.T).N(g.Z).F(0).1z(f)}
n{
	7(g.8.o=="1o"||g.8.o=="1w"||g.8.o=="1x"){
	g.1v.1W(g,h,f)}
n{
	b(g.8.T).N(g.Z).F(0).1z(f)}
}
g.2L(g,g.2z);
	g.1B++;
	g.1F--}
n{
	7(g.8.o=="1I"){
	b(g.8.T).N(g.Z).F(0).1z(0)}
n{
	7(g.8.o=="1o"||g.8.o=="1w"||g.8.o=="1x"){
	g.1v.1W(g,h,0)}
n{
	b(g.8.T).N(g.Z).F(0).1z(0)}
}
g.2L(g,0);
	g.1B=1;
	g.1F=g.3j}
}
}
,5e:9(h){
	D g=6,h,f;
	g.I&&18(g.I);
	(h>6.1s-1)&&(h=0);
	(h<0)&&(h=6.1s-1);
	7(6.8.o=="1o"||6.8.o=="1w"||6.8.o=="1r"){
	g.1G="-"+h*6.1N;
	6.2p=0}
n{
	7(6.8.o=="1x"){
	7(!g.8.2J){
	g.17.1P(0.5);
	g.17.F(h).1P(1)}
g.8.R&&(g.I=13(9(){
	g.1l()}
,g.8.11))}
}
b.A.2e(6.1s,9(j){
	7(h==j){
	g.17.F(j).1V(g.8.1m);
	7(g.1k){
	g.1k.F(j).1V(g.8.1m)}
}
n{
	g.17.F(j).1h(g.8.1m);
	7(g.1k){
	g.1k.F(j).1h(g.8.1m)}
}
}
);
	6.W=h;
	7(g.8.37&&g.8.3e){
	b(g.8.37).1T(6.W+1)}
6.2o(6,h,g.1G)}
,38:9(h){
	D g=6,h,f;
	g.I&&18(g.I);
	(h>6.1s-1)&&(h=0);
	(h<0)&&(h=6.1s-1);
	7(g.Z){
	7(h==g.2z){
	7(g.1B==g.1F){
	g.1B=1;
	g.1F=g.3j;
	g.y=0;
	g.3h(g)}
n{
	g.3h(g)}
}
n{
	7(h==0){
	7(g.8.o=="1I"){
	b(g.8.T).N(g.Z).F(0).1z(0)}
n{
	7(g.8.o=="1o"||g.8.o=="1w"||g.8.o=="1x"){
	g.1v.1W(g,h,0)}
n{
	b(g.8.T).N(g.Z).F(0).1z(0)}
}
}
}
}
7(6.8.o=="1o"||6.8.o=="1w"||6.8.o=="1r"){
	g.1G="-"+h*6.1N;
	6.2p=0}
n{
	7(6.8.o=="1x"){
	7(!g.8.2J){
	g.17.1P(0.5);
	g.17.F(h).1P(1)}
g.8.R&&(g.I=13(9(){
	g.1l()}
,g.8.11))}
}
b.A.2e(6.1s,9(j){
	7(h==j){
	g.17.F(j).1V(g.8.1m);
	7(g.1k){
	g.1k.F(j).1V(g.8.1m)}
}
n{
	g.17.F(j).1h(g.8.1m);
	7(g.1k){
	g.1k.F(j).1h(g.8.1m)}
}
}
);
	6.W=h;
	7(g.8.37&&g.8.3e){
	b(g.8.37).1T(6.W+1)}
6.2o(6,h,g.1G)}
,35:9(g){
	D f=6;
	6.I&&18(6.I);
	D f=6,g;
	f.1G="-"+g*6.1N;
	6.W=g;
	6.2o(6,g,f.1G)}
,58:9(){
	6.35(--6.W)}
,4g:9(){
	6.35(++6.W)}
,4j:9(){
	6.1y=1;
	6.38(--6.W)}
,1l:9(){
	6.1y=1;
	6.38(++6.W)}
,3d:9(){
	6.49&&18(6.49);
	6.1y=1;
	6.5g(6)}
,5g:9(f){
	f.49=13(9(){
	f.3d()}
,4a)}
}
);
	b.17=9(f){
	H 3R d(f)}
;
	b.P.47=9(g,f){
	H 5h.2e(9(j){
	7(f){
	j=j.53(f)}
D i=j.1T();
	j.5Q();
	j.1T(g);
	D h=j.V;
	4C(h.5j){
	h=h.5j}
h.4c=i}
,6)}
;
	D a=59.55({
	4Q:9(f){
	6.8={
	T:"1r",2d:10,1p:10,2K:"2y",o:"1r",2P:".6b",3D:"4O",4W:1,3I:4,R:1,S:"G",16:U,11:4K}
;
	b.56(6.8,f);
	D h=6;
	D g=6.8;
	6.2d=g.2d;
	6.1p=-g.1p;
	6.16=g.16;
	6.3I=g.3I;
	6.S=g.S;
	6.11=g.11;
	6.3D=g.3D;
	6.1R=g.5Z;
	6.3f=g.5W;
	6.21=g.5V;
	6.4i=g.5R;
	h.2P=b(g.T).N(h.8.2P).F(0);
	7(g.S=="G"){
	h.2P.47("<1K 3A=\'3Z\' 1f=\'2r:2n;
	1i:4T\'><1K 3A=\'3Q\' 1f=\'4l:3C;
	4U:G\'></1K></1K>")}
n{
	h.2P.47("<1K 3A=\'3Z\' 1f=\'2r:2n;
	1g:4T\'><1K 3A=\'3Q\' 1f=\'4l:3C;
	4U:G\'></1K></1K>")}
h.1J=0;
	h.1d=0;
	h.1Q=0;
	h.31=0;
	h.2j=0;
	h.1U=0;
	h.E=b(g.T).N(".3Z").F(0);
	h.1e=U;
	h.2g=1L;
	h.15=1L;
	h.2q=1L;
	h.2v=1L;
	h.2x=1L;
	h.2i=h.E.N(".3Q").F(0);
	h.J=h.2i.53(0);
	h.3G=h.2i.N(h.3D).2Q;
	h.54=h.2i.3M(1Z);
	h.2i.2T(1).3K(h.54);
	7(b.B.5S){
	7(h.S=="G"){
	7(O(h.J.M("Q-23"))&&!O(h.J.M("Q-G"))){
	6.1A=h.J.V.1S+O(h.J.M("Q-23"))}
7(O(h.J.M("Q-G"))&&!O(h.J.M("Q-23"))){
	6.1A=h.J.V.1S+O(h.J.M("Q-G"))}
7(O(h.J.M("Q-23"))&&O(h.J.M("Q-G"))){
	6.1A=h.J.V.1S+O(h.J.M("Q-G"))+O(h.J.M("Q-23"))}
7(!O(h.J.M("Q-23"))&&!O(h.J.M("Q-G"))){
	6.1A=h.J.V.1S}
}
n{
	7(O(h.J.M("Q-2h"))&&!O(h.J.M("Q-K"))){
	6.1A=h.J.V.29+O(h.J.M("Q-2h"))}
7(O(h.J.M("Q-K"))&&!O(h.J.M("Q-2h"))){
	6.1A=h.J.V.29+O(h.J.M("Q-K"))}
7(O(h.J.M("Q-2h"))&&O(h.J.M("Q-K"))){
	6.1A=h.J.V.29+O(h.J.M("Q-K"))+O(h.J.M("Q-2h"))}
7(!O(h.J.M("Q-2h"))&&!O(h.J.M("Q-K"))){
	6.1A=h.J.V.29}
}
}
n{
	h.S=="G"?6.1A=h.J.V.1S+O(h.J.M("Q-23"))+O(h.J.M("Q-G")):6.1A=h.J.V.29+O(h.J.M("Q-2h"))+O(h.J.M("Q-K"))}
6.1c=6.1A*g.4W;
	6.2f=6.1A*(h.3G-h.3I);
	h.3l=h.2i.1i();
	h.3q=h.2i.1g();
	h.E.5b(9(){
	12(h.15)}
,9(){
	g.R&&h.1j(h)}
);
	7(g.20&&g.20.2U==2){
	h.14=b(g.T).N(g.20[0]).F(0);
	h.1b=b(g.T).N(g.20[1]).F(0);
	h.5T=h.14.4V();
	h.5U=h.1b.4V();
	h.2q=h.14.L("2V",9(){
	h.3n(h)}
);
	h.2v=h.14.L("2X",9(){
	6.1H(h.1R);
	12(h.15)}
);
	h.34=h.14.L("2R",9(){
	h.3i(h);
	12(h.15)}
);
	h.2x=h.14.L("2Z",9(){
	6.1H(h.1R);
	g.R&&h.1j(h)}
);
	h.36=h.1b.L("2X",9(){
	6.1H(h.21);
	12(h.15)}
);
	h.3u=h.1b.L("2V",9(){
	h.2S(h);
	h.31=1}
);
	h.3p=h.1b.L("2R",9(){
	h.33(h);
	12(h.15)}
);
	h.3s=h.1b.L("2Z",9(){
	6.1h(h.21);
	g.R&&h.1j(h)}
);
	!h.16&&h.14.1H(h.3f)}
g.R&&h.1j(h)}
,4P:9(f){
	f.2q=f.14.L("2V",9(){
	f.3n(f)}
);
	f.2v=f.14.L("2X",9(){
	6.1H(f.1R);
	12(f.15)}
);
	f.34=f.14.L("2R",9(){
	f.3i(f);
	12(f.15)}
);
	f.2x=f.14.L("2Z",9(){
	6.1H(f.1R);
	8.R&&f.1j(f)}
)}
,4S:9(f){
	f.2S(f);
	f.31=1;
	6.1H(f.21);
	12(f.15);
	f.3p=f.1b.L("3y",9(){
	f.33(f);
	12(f.15)}
);
	6.1h(f.21);
	8.R&&f.1j(f)}
,3b:9(f){
	7(6.8.3T){
	2Y.4Z(f.2T().V.1M,"51")}
n{
	2Y.43.1M=f.2T().V.1M}
}
,45:9(g,f){
	g.52();
	g.48();
	6.I&&18(6.I);
	7(g.4N.2U>1){
	6.26=U;
	H}
n{
	6.26=1Z}
6.1U=g.2t[0].2u}
,3x:9(g,f){
	7(!6.26){
	H}
7(6.1U<g.2t[0].2u){
	6.4P(6)}
n{
	7(6.1U>g.2t[0].2u){
	6.4S(6)}
n{
	H 6.3b(f)}
}
}
,3m:9(f){
	f.14.1O("4d",f.2v);
	f.14.1O("39",f.2x);
	f.14.1O("5f",f.34);
	f.14.1O("5i",f.2q);
	f.14.1h(f.1R).1V(f.3f)}
,2l:9(f){
	f.1b.1O("5i",f.3u);
	f.1b.1O("5f",f.3p);
	f.1b.1O("4d",f.36);
	f.1b.1O("39",f.3s);
	f.1b.1h(f.21).1V(f.4i)}
,57:9(f){
	7(f.2q||f.2v||f.2x){
	f.3m(f);
	f.14.1h(f.3f)}
f.2q=f.14.L("2V",9(){
	f.3n(f)}
);
	f.2v=f.14.L("2X",9(){
	6.1H(f.1R);
	12(f.15)}
);
	f.34=f.14.L("2R",9(){
	f.3i(f);
	12(f.15)}
);
	f.2x=f.14.L("2Z",9(){
	6.1h(f.1R);
	f.8.R&&f.1j(f)}
);
	f.1e=U}
,5a:9(f){
	7(f.3u||f.36||f.3s){
	f.2l(f);
	f.1b.1h(f.4i)}
f.36=f.1b.L("2X",9(){
	6.1H(f.21);
	12(f.15)}
);
	f.3u=f.1b.L("2V",9(){
	f.2S(f)}
);
	f.3p=f.1b.L("2R",9(){
	f.33(f)}
);
	f.3s=f.1b.L("2Z",9(){
	6.1h(f.21);
	f.8.R&&f.1j(f)}
);
	f.1e=U}
,1j:9(f){
	12(f.15);
	7(f.2j&&!f.16){
	H}
f.15=3L(9(){
	f.2S(f);
	f.33(f)}
,f.11)}
,2S:9(f){
	!f.16&&f.57(f);
	12(f.2g);
	7(f.1e){
	H}
12(f.15);
	f.3Y(f);
	f.2g=3L(9(){
	f.3Y(f)}
,f.2d);
	f.1e=1Z}
,3n:9(f){
	!f.16&&f.5a(f);
	12(f.2g);
	7(f.1e){
	H}
f.15&&12(f.15);
	f.2g=3L(9(){
	f.4J(f)}
,f.2d);
	f.1e=1Z;
	f.2j=0}
,3i:9(f){
	12(f.2g);
	7(f.S=="G"){
	7(f.E.Y()%f.1c-f.1J!=0){
	f.1d=f.1J-(f.E.Y()%f.1c);
	f.22(f)}
n{
	f.1e=U}
}
n{
	7(f.E.X()%f.1c-f.1J!=0){
	f.1d=f.1J-(f.E.X()%f.1c);
	f.22(f)}
n{
	f.1e=U}
}
f.8.R&&f.1j(f)}
,4J:9(f){
	7(f.S=="G"){
	7(-f.E.Y()<=0){
	7(!f.16){
	H}
f.E.Y(f.E.Y()-f.3l)}
7(-f.E.Y()<=f.1c){
	!f.16&&f.3m(f);
	!f.16&&f.8.R&&13(9(){
	f.1j(f)}
,f.11)}
f.E.Y(f.E.Y()-f.1p)}
n{
	7(-f.E.X()<=0){
	7(!f.16){
	H}
f.E.X(f.E.X()-f.3q)}
7(-f.E.X()<=f.1c){
	!f.16&&f.3m(f);
	!f.16&&f.8.R&&13(9(){
	f.1j(f)}
,f.11)}
f.E.X(f.E.X()-f.1p)}
}
,3Y:9(f){
	7(f.S=="G"){
	7(!f.16&&-f.E.Y()>f.2f){
	f.2l(f);
	f.1Q=1;
	H}
7(f.E.Y()<=-f.3l){
	f.E.Y(f.E.Y()+f.3l)}
f.E.Y(f.E.Y()+f.1p);
	7(!f.16&&-f.E.Y()>f.2f-f.1c){
	f.2l(f);
	f.1Q=1;
	f.2j=1}
}
n{
	7(!f.16&&-f.E.X()>f.2f){
	f.2l(f);
	f.1Q=1;
	H}
7(f.E.X()<=-f.3q){
	f.E.X(f.E.X()+f.3q)}
f.E.X(f.E.X()+f.1p);
	7(!f.16&&-f.E.X()>f.2f-f.1c){
	f.2l(f);
	f.1Q=1;
	f.2j=1}
}
}
,33:9(f){
	12(f.2g);
	7(f.S=="G"){
	7(!f.16&&f.1Q&&-f.E.Y()>f.2f-f.1c){
	13(9(){
	12(f.15)}
,f.11);
	f.1e=U;
	f.1Q=0;
	f.2j=1}
7(f.E.Y()%f.1c-f.1J!=0){
	f.1d=0-f.1c-f.E.Y()%f.1c+f.1J;
	f.22(f)}
n{
	f.1e=U}
}
n{
	7(!f.16&&f.1Q&&-f.E.X()>f.2f-f.1c){
	13(9(){
	12(f.15)}
,f.11);
	f.1e=U;
	f.1Q=0;
	f.2j=1}
7(f.E.X()%f.1c-f.1J!=0){
	f.1d=0-f.1c-f.E.X()%f.1c+f.1J;
	f.22(f)}
n{
	f.1e=U}
}
7(f.31){
	f.31=0;
	H}
n{
	f.8.R&&f.1j(f)}
}
,22:9(g){
	D f;
	7(g.1d==0){
	g.1e=U;
	H}
7(g.1d>0){
	7(g.1d>-g.1p){
	g.1d+=g.1p;
	f=g.1p}
n{
	f=-g.1d;
	g.1d=0}
7(g.S=="G"){
	g.E.Y(g.E.Y()-f)}
n{
	g.E.X(g.E.X()-f)}
13(9(){
	g.22(g)}
,g.2d)}
n{
	7(g.1d<g.1p){
	g.1d-=g.1p;
	f=g.1p}
n{
	f=g.1d;
	g.1d=0}
7(g.S=="G"){
	g.E.Y(g.E.Y()+f)}
n{
	g.E.X(g.E.X()+f)}
13(9(){
	g.22(g)}
,g.2d)}
}
}
);
	b.1r=9(f){
	H 3R a(f)}
;
	9 e(j){
	D h=60.61(/<\\w+/.67(j)[0].4I(1)),k=j.4I(0,j.3t(">")+1).68(/\\w+=([\'"])[^>]*?\\1/g);
	7(k&&k.2U>0){
	D g=0;
	4C(k[g]){
	D f=k[g].69("=");
	7(f[1]=f[1].4q(/[\'"]/g,"")){
	h.66(f[0],f[1])}
g++}
}
h.4c=j.65(j.3t(">")+1,j.62("<")).4q(/^\\s+|\\s+$/g,"");
	H h}
9 c(f,g){
	7(f.63){
	f.1f.4G="64(1P="+g+")"}
n{
	f.1f.1P=g/28}
}
}
)(5h);
	',62,396,'||||||this|if|opt|function||||||||||||||else|effect||||||||||||||px|var|scrObj|item|left|return|runId|Wrapchild|top|bind|css|find|parseInt||margin|auto|vertical|id|false|node|current|Top|Left|tabwr||interval|clearInterval|setTimeout|btleft|AutoPlayObj|loop|tabs|clearTimeout|cons|cont|btright|PageWidth|Comp|MoveLock|style|height|removeClass|width|AutoPlay|texts|next|curCn|setStyle|slide|Space|transparent|scroll|levels|start|conId|effects|fxslide|fade|th2|scrollLeft|elemLength|sn|fxspeed|second|go|tn|to|toggleClass|def|fill|div|null|href|ml|unbind|opacity|Stop|prevMouseImg|offsetWidth|html|fMoveX|addClass|tabscroll|delay|fxeffect|true|bns|nextMouseImg|CompScr|right|borderLeftWidth||oneFinger|borderRightWidth|100|offsetHeight|lock2|Tol|borderTopWidth|Speed|each|finalMovePos|MoveTimeObj|bottom|scrWrap|finish|borderBottomWidth|disbtright|Math|absolute|effectFn|end|scrEvent1|position|direction|changedTouches|pageX|btMouse1|display|ptMouse1|click|shownum|borderRightColor|bgColor|borderLeftColor|borderTopColor|borderBottomColor|speed|tocolor|toColor|flipscrolling|pageBt|eType|tabMoveFix|tabnum|ceil|mousecurrent|scWr|len|_mouseup|ISL_GoDown|parent|length|_mousedown|scrOption|_mouseover|window|_mouseout|textId|test|tabId|ISL_StopDown|mouseup1|scrTo|btMouse2|numId|moveTo|mouseout|event|linkTo|tabOption|tcTime|totalId|prevStopImg|timeManger1|tabnext|ISL_StopUp|temptn|tabitemlen|scrWrapWidth|disbtleft|ISL_GoUp|flip|mouseup2|scrWrapHeight|lock|ptMouse2|indexOf|scrEvent2|mbox|onEnd|tochEnd|touchend|onAnimation|class|none|hidden|scrElem|tb|onBefore|scrlen|bt|showNum|case|append|setInterval|clone|0px|500|rl|count|new|tabobj|ipNewPage|runssId|consFix|tabsFix|timeManger2|ISL_ScrDown|cols|conCn|_touchstart|th1|location|block|tochStart|marginLeft|childWrap|preventDefault|simuId|1000|first|innerHTML|mouseover|fxOption|runffId|scrnext|tabCn|nextStopImg|prev|lr|overflow|ie6|tochSE|color|slidecurrent|replace|scrcol|target|magic|img|linkBl|tabTn|end1|conTn|fadetime|visibility|fontSize|while|background|content|showcolumn|filter|dontChangeColor|substr|ISL_ScrUp|2000|textCn|extra|targetTouches|li|leftEvent|init|tevent|rightEvent|9999px|float|classNames|scrNum|showcolclass|scrcont|open||_blank|stopImmediatePropagation|child|scrWrap2|create|extend|enabbtleft|scrprev|KClass|enabbtright|hover|textTn|tabprev|fixMoveTo|mouseup|simulate|Koala|mousedown|firstChild|Failed|floor|cur|scrcolumn|total|visible|row1|9999|switch|_|focus|tempCn|default|ready|zIndex|toString|Error|throw|otherTn|scrstep|step|othertabTn|screffect|nd|th3|rgb|gestureend|gesturestart|Match|arguments|callee|nitem|empty|nextStopClass|ie|btnLeftImg|btnRightImg|nextMouseClass|prevStopClass|remove|font|prevMouseClass|document|createElement|lastIndexOf|filters|alpha|substring|setAttribute|exec|match|split|chroma|scwr|parentY|backgroundColor|lineHeight|borderStyle|parentX|red|size|12px|fromcolor|solid|123456|999px'.split('|'),0,{
}
))/* |xGv00|74c854a77feac9496409ff15886f9bef */

CSS代码(zzsc.css):

@charset "gb2312";/*-----base.css-----*/
body,h1,h2,h3,h4,h5,h6,hr,p,blockquote,dl,dt,dd,ul,ol,li,pre,form,fieldset,legend,button,input,textarea,table,th,td,section,article,aside,header,footer,nav,dialog,figure{margin:0;padding:0;}
body,button,input,select,textarea{font:12px/1.5 \5FAE\8F6F\96C5\9ED1,\5b8b\4f53;}
section,article,aside,header,footer,nav,dialog,figure{display:block;}
table{border-collapse:collapse;border-spacing:0;}
fieldset,img{border:0;}
address,caption,cite,code,dfn,em,b,th,var,i{font-weight:normal;font-style:normal;}
code,kbd,pre,samp{font-family:courier new,courier,monospace;}
ol,ul{list-style:none;}
caption,th{text-align:left;}
h1,h2,h3,h4,h5,h6{font-weight:normal;font-size:100%;}
q:before,q:after{content:"";}
abbr,acronym{border:0;}
select,input,button,button img,textarea,label{margin:0px;vertical-align:middle;}
/*input[type=radio],input[type=checkbox]{margin-right:5px;}
*/
b{font-weight:bold;}
.clear{height:0px;font-size:0px;line-height:0px;overflow:hidden;clear:both;}
.clear1{height:0px;font-size:0px;line-height:0px;overflow:hidden;clear:both;}
.clearfix:after{clear:both;overflow:hidden;content:".";}
/*-----common------*/
a{text-decoration:none;color:#333;}
a:hover{text-decoration:underline;color:#ec7d55;}
/*a:hover img{filter:alpha(opacity=70);-moz-opacity:0.7;-khtml-opacity:0.7;opacity:0.7;}
*/
.undis{display:none;}
.f-l{float:left;}
.f-r{float:right;}
.red{color:#ec4444;}
.gray{color:#c8c8c8;}
.green{color:#68a81d;}
.blue{color:#379bb4;}
.pink{color:#d0565f;}
.white{color:#ffffff;}
.orange{color:#ff6422;}
.brown{color:#e2a257;}
.f14{font-size:14px;}
.f16{font-size:16px;}
.f18{font-size:18px;}
.mt2{margin-top:2px;}
.mt4{margin-top:4px;}
.mt10{margin-top:10px;}
.mt12{margin-top:12px;}
.mt13{margin-top:13px;}
.mb4{margin-bottom:4px;}
.f-st{font-family:\5b8b\4f53;}
.f-yh{font-family:\5FAE\8F6F\96C5\9ED1;}
.tel_l{text-align:left;}
.tel_r{text-align:right;}
/*----layout----*/
.hr20{height:20px;overflow:hidden;clear:both;}
.th_1 .flash_box{width:570px;padding:0px 20px;position:relative;overflow:hidden}
.th_1 .flash_box .flash_con{width:570px;height:330px;overflow:hidden;}
.th_1 .flash_box .flash_con .split{width:570px;height:330px;overflow:hidden;position:relative;}
.th_1 .flash_box .flash_con .split .shadow{width:570px;height:56px;overflow:hidden;background:#000;z-index:10;filter:alpha(opacity=70);-moz-opacity:0.7;-khtml-opacity:0.7;opacity:0.7;position:absolute;left:0px;bottom:0px;}
.th_1 .flash_box .flash_con .split .wz{width:540px;height:43px;overflow:hidden;border-top:solid 3px #f47346;position:absolute;left:0px;bottom:0px;z-index:20;color:#fff;line-height:30px;padding:10px 0px 0px 30px;text-decoration:none;cursor:pointer;}
.th_1 .flash_box .f_btn{width:570px;height:14px;overflow:hidden;text-align:center;}
.th_1 .flash_box .f_btn .fbtn_con{width:112px;margin:0px auto;height:14px;overflow:hidden;text-align:center;}
.th_1 .flash_box .f_btn .fbtn_con a{width:12px;height:12px;overflow:hidden;display:block;float:left;background:#fff;border:solid 1px #bebdbd;margin:0px 6px;text-indent:-999em;outline:0px;text-decoration:none;}
.th_1 .flash_box .f_btn .fbtn_con .current,.th_1 .flash_box .f_btn .fbtn_con a:hover{background:#cdafe0;border:solid 1px #cdafe0;}
.th_1 .flash_box .prev{width:13px;height:20px;overflow:hidden;display:block;background:url(bbs2_76.png) no-repeat left top;position:absolute;left:0px;top:162px;cursor:pointer;}
.th_1 .flash_box .next{width:13px;height:20px;overflow:hidden;display:block;background:url(bbs2_79.png) no-repeat left top;position:absolute;right:0px;top:162px;cursor:pointer;}
.th_1 .top_news{width:322px;padding-right:33px;overflow:hidden;}
.th_1 .top_news .split .tit{width:292px;height:48px;overflow:hidden;background:url(bbs42_03.png) no-repeat left top;padding:6px 15px 6px 15px;text-indent:2em;}
.th_1 .top_news .split .tit a{line-height:24px;}
.th_1 .top_news .split .wz_con{font-size:14px;line-height:24px;padding:15px 5px 15px 10px;height:48px;overflow:hidden;text-indent:2em;}
.th_1 .top_news .split .ps{height:18px;line-height:18px;overflow:hidden;padding-left:10px;}
.th_1 .top_news .split .ps .author{width:auto;padding-right:10px;}
.th_1 .top_news .split .ps .num{width:auto;padding:0px 20px 0px 10px;background:url(eye.png) no-repeat right center;}
.th_1 .top_news .split .ps .diver{padding-left:10px;}
附件:下载该文件资源,减少时间成本(增值服务)
留言
该资源可下载
File Source
.rar
343.67 KB
Html 焦点滚动特效3
最新结算
HTM5 Canvas实现3D飞机飞行动画特效代码
类型: .rar 金额: CNY 2.31¥ 状态: 待结算 详细>
HTM5 Canvas实现3D飞机飞行动画特效代码
类型: .rar 金额: CNY 0.29¥ 状态: 待结算 详细>
jQuery图像缩放工具插件Zoomer特效代码
类型: .rar 金额: CNY 0.29¥ 状态: 待结算 详细>
jQuery图像缩放工具插件Zoomer特效代码
类型: .rar 金额: CNY 2.31¥ 状态: 待结算 详细>
Labelauty–jQuery单选框_复选框美化插件特效代码
类型: .rar 金额: CNY 2.31¥ 状态: 待结算 详细>
Labelauty–jQuery单选框_复选框美化插件特效代码
类型: .rar 金额: CNY 0.29¥ 状态: 待结算 详细>
jQuery网页版打砖块小游戏源码
类型: .rar 金额: CNY 0.29¥ 状态: 待结算 详细>
jQuery网页版打砖块小游戏源码
类型: .rar 金额: CNY 2.31¥ 状态: 待结算 详细>
jquery虚拟键盘中文打字效果js代码
类型: .rar 金额: CNY 2.31¥ 状态: 待结算 详细>
jquery虚拟键盘中文打字效果js代码
类型: .rar 金额: CNY 0.29¥ 状态: 待结算 详细>
我们力求给您提供有用的文章,再此基础上,会附加营收资源,不做任何广告,让平台可以更好发展 若您发现您的权利被侵害,或使用了您的版权,请发邮件联系 sunlifel@foxmail.com ggbig觉得 : 不提供源码的文章不是好文章
合作伙伴
联系我们
  • QQ:21499807
  • 邮箱:sunlifel@foxmail.com
  • QQ扫一扫加QQ
    QQ扫一扫
Copyright 2023-2024 ggbig.com·皖ICP备2023004211号-1
打赏文章