<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">$(function(){

	//qvod widget
	//ç„¦ç‚¹å›¾
	$('.qslider').slider({
		ChangeTime : 3000,		/*å›¾ç‰‡è½®æ¢æ—¶é—´ type:å•ä½æ¯«ç§’*/
		FadeinTime : 500,		/*å›¾ç‰‡æ·¡å…¥æ—¶é—´ type:å•ä½æ¯«ç§’*/
		PicDes : 'show',	    /*æ˜¯å¦æ˜¾ç¤ºå›¾ç‰‡æè¿° showæ˜¾ç¤º, hiddenä¸æ˜¾ç¤º type:å­—ç¬¦ä¸²*/
		IndexBtn : 'show',      /*æ˜¯å¦æ˜¾ç¤ºæ•°å­—ç´¢å¼• showæ˜¾ç¤º  hiddenéšè— type:å­—ç¬¦ä¸²*/
		CurClass : 'current'    /*æ•°å­—æŒ‰é’®çš„å½“å‰çŠ¶æ€çš„æ—¶å€™ class åç§° type:å­—ç¬¦ä¸²*/
	});
	var a=/sj.qudao/;
	if(a.test(window.location.href)){
		$('#qvod').animate({
			height:'37px'
		},800);
	}else{
		$('#qvod').animate({
			height:'394px'
		},800);
	}

	$('.fnBtn','#qvod').bind('click',function(e){
		e.preventDefault();

		if($(this).is('.down')){
			$('#qvod').animate({
				height:'37px'
			},800,function(){
				$('.fnBtn','#qvod').removeClass('down').addClass('up');
			});
		}else if($(this).is('.up')){
			$('#qvod').animate({
				height:'394px'
			},800,function(){
				$('.fnBtn','#qvod').removeClass('up').addClass('down');
			});
		};		
	});

});</pre></body></html>