0
在JavaScript中,我想制定一個規則,以便.mouseover只會在第一次滾動時起作用。讓.mouseover只在第一次滾動時才能工作
我該怎麼做?
這裏是我的代碼:
$("#page3").mouseover(function(){
$("#htmlcss").animate({width: "90%"}, 500);
$("#jqueryjavascript").animate({width: "40%"}, 500);
$("#phpmysql").animate({width: "20%"}, 500);
});