gpt4 book ai didi

jquery - JQuery 中的属性悬停

转载 作者:行者123 更新时间:2023-12-01 05:30:55 25 4
gpt4 key购买 nike

我想制作一个盒子,将鼠标悬停在其上后会用动画更改背景颜色,但我的 jQuery 脚本不会对 div 产生任何效果。但是没有错误。

$(document).ready(function(){
$("#box").hover(function () {
$(this).stop().animate({ backgroundColor: "#F00" },700)
}, function() {
$(this).stop().animate({ backgroundColor: "#AAA" },700)}
);
});
<div id="box" style="display:block; width: 500px; height: 100px; margin: 0 auto; background-color:red;"></div>

最佳答案

您可以使用Color animation jQuery-plugin设置背景颜色的动画。这很简单,这是一个完整的示例:

  <head>
<title></title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.3/jquery.min.js"></script>
<script src="//cdn.jsdelivr.net/jquery.color-animation/1/mainfile"></script>
<script type="text/javascript">
$(document).ready(function () {
$("#box").hover(function () {
$('#box').animate({ backgroundColor: 'black' })
}, function () {
$('#box').animate({ backgroundColor: 'red' })
}
);
});
</script>
</head>
<body>
<div id="box" style="display: block; width: 500px; height: 100px; margin: 0 auto; background-color: red;"></div>
</body>

关于jquery - JQuery 中的属性悬停,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37311524/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com