<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">$(function(){
		  /*鼠标移过，左右按钮显示*/
$(".pictab").hover(function(){
	$(this).find(".prev,.next").fadeTo("show",0.3);
},function(){
	$(this).find(".prev,.next").hide();
})
/*鼠标移过某个按钮 高亮显示*/
$(".prev,.next").hover(function(){
	$(this).fadeTo("show",0.7);
},function(){
	$(this).fadeTo("show",0.3);
})
$(".pictab").slide({ titCell:".num ul" , mainCell:".pictabul" , effect:"fold", autoPlay:true, delayTime:100 , autoPage:true }); 
		   })
</pre></body></html>