为了账号安全,请及时绑定邮箱和手机立即绑定

无缝滚动制作

代码中没有写到,当鼠标经过字的颜色变红色啊?

正在回答

1 回答

<!DOCTYPE html>
<html>
<body>

<div onmouseover="mOver(this)" onmouseout="mOut(this)" style="width:120px;height:20px;padding:40px;">把鼠标移到上面</div>

<script>
function mOver(obj)
{
obj.style.color="red";
}

function mOut(obj)
{
obj.style.color="black";
}
</script>

</body>
</html>
<!DOCTYPE html>
<html>
<body>

<div style="width:120px;height:20px;padding:40px;">把鼠标移到上面</div>

<style>
div:hover{
    color:red;
}
</style>

</body>
</html>

HTML onmouseover 事件属性  http://www.w3school.com.cn/tags/event_onmouseover.asp

CSS :hover 选择器  http://www.w3school.com.cn/cssref/selector_hover.asp

0 回复 有任何疑惑可以回复我~
#1

菜鸟逆袭ing 提问者

非常感谢!
2016-03-21 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
信息滚动效果制作
  • 参与学习       47751    人
  • 解答问题       321    个

萌妹子带您快速学习滚动效果,掌握无缝滚动和歇间性滚动的制作方法

进入课程

无缝滚动制作

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信