You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
323 B
JavaScript
19 lines
323 B
JavaScript
6 years ago
|
// JavaScript Document
|
||
|
//首页的切换
|
||
|
$(function(){
|
||
|
$(".tourBrief").hover(
|
||
|
function(){
|
||
|
if($(this).css('opacity') == 0){
|
||
|
$(".tourBrief").fadeTo(0.1,0,"swing");
|
||
|
$(this).fadeTo(500,1,"swing");
|
||
|
}
|
||
|
}
|
||
|
,
|
||
|
function(){
|
||
|
if($(this).index()>0){
|
||
|
$(".tourBrief").fadeTo(0.1,0,"swing");
|
||
|
}
|
||
|
}
|
||
|
);
|
||
|
});
|