的onmouseover();不工作?

时间:2013-05-10 02:29:48

标签: javascript html onmouseover

所以我在here上创建了一个投资组合网站,出于某种原因,每当我尝试将onmouseover事件附加到任何图标时,没有任何反应,我试图让我的名字的文字褪色进入你正在悬停的图标的名称,当你的鼠标关闭时淡出,是否有任何方法可以做到这一点?我尝试了大约十个“解决方案”

由于

2 个答案:

答案 0 :(得分:0)

<td onclick="move('url');" onmouseover="alert();" class="tile" id="portfolio"></td>

答案 1 :(得分:0)

我注意到你的网站上正在加载jQuery所以我会给你一个使用jQuery的答案,即使它没有列在你的标签上

$("#about").mouseover(function(){ //When the mouse enters
    $("span.text").fadeOut("slow",function(){
        //After your name has fadedOut switch the text and fadeIn
        $("span.text").html("About");
        $("span.text").fadeIn("slow");
    });
}).mouseout(function(){ //When the mouse leaves
    $("span.text").fadeOut("slow",function(){
        //After "about" has fadedOut switch with your name and fadeIn
        $("span.text").html("Matthew Foulks");
        $("span.text").fadeIn("slow");
    });
});

希望这会有所帮助。询问您是否对此有任何疑问。