所以我在这里制作了一个投资组合网站,出于某种原因,每当我尝试将 onmouseover 事件附加到任何图标时,什么都没有发生,我试图让带有我名字的文本淡入你的图标名称悬停在鼠标上时会淡出,有什么办法吗?我已经尝试了大约十种“解决方案”
谢谢
所以我在这里制作了一个投资组合网站,出于某种原因,每当我尝试将 onmouseover 事件附加到任何图标时,什么都没有发生,我试图让带有我名字的文本淡入你的图标名称悬停在鼠标上时会淡出,有什么办法吗?我已经尝试了大约十种“解决方案”
谢谢
<td onclick="move('url');" onmouseover="alert();" class="tile" id="portfolio"></td>
我注意到在您的网站上您正在加载 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");
});
});
希望这会有所帮助。询问您是否对此有任何疑问。