|
@@ -623,12 +623,19 @@ $("body").click(function(event){
|
|
|
// if ($(this).hasClass('focus')) $(this).find('b').html('▲').addClass("down")
|
|
|
// else $(this).find('b').html('▼').removeClass("down")
|
|
|
// });
|
|
|
-$('.selectEntry').hover(function(){
|
|
|
- $(this).children(".selectList").fadeToggle();
|
|
|
- $(this).children(".selectTitle").toggleClass("focus");
|
|
|
- if ($(this).children(".selectTitle").hasClass('focus')) $(this).find('b').html('▲').addClass("down")
|
|
|
- else $(this).find('b').html('▼').removeClass("down")
|
|
|
+/*首页下载软件*/
|
|
|
+$('.selectTitle').hover(function(){
|
|
|
+ $(this).siblings(".selectList").slideDown();
|
|
|
+ $(this).addClass("focus");
|
|
|
+ if ($(this).hasClass('focus')) $(this).siblings('b').html('▲').addClass("down")
|
|
|
+ else $(this).siblings('b').html(' ').removeClass("down")
|
|
|
});
|
|
|
+$('.arrow').click(function(){
|
|
|
+ $(this).siblings(".selectList").slideUp("fast");
|
|
|
+ $(this).siblings(".selectTitle").removeClass("focus");
|
|
|
+ $(this).html(' ').removeClass("down")
|
|
|
+});
|
|
|
+
|
|
|
/*轮换1*/
|
|
|
var q=1;
|
|
|
var show_li = $("#pointer li");
|