gpt4 book ai didi

jQuery 没有动画颜色变化

转载 作者:太空宇宙 更新时间:2023-11-03 23:39:46 25 4
gpt4 key购买 nike

fiddle :http://jsfiddle.net/BMJWS/

我想让文本在点击时变成红色,但由于某些原因它不起作用:

html:

<div id = 'text'>hi</div>

CSS:

#text {
color:black;
}

js:

function turnred() {
$("#text").animate({color: 'red'}, 400);
}

$('#text').click(function() {
turnred();
});

最佳答案

为了使用彩色动画,您需要包含 JQuery UI:

<link rel="stylesheet" href="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/themes/smoothness/jquery-ui.css" />
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/jquery-ui.min.js"></script>

Updated Fiddle

关于jQuery 没有动画颜色变化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23160170/

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