我有問題。 如何逐漸改變班級,每60秒。 是否可以連接到當前時間的功能?如何逐步更改班級
這是一個例子,但它不會改變類每60秒
這裏是我的代碼:
$(function() {
function test() {
$('#test1').switchClass('class1', 'class2', 1000);
if($('#test1').hasClass('class1'))
{
$('#test1').switchClass('class2', 'class1', 1000);
}
else
{
$('#test1').switchClass('class1', 'class2', 1000);
}
}
// run function
test();
// loop function
setInterval(function() { test();}, 1000);
});
CSS代碼:
.class1 {
width: 400px;
height: 200px;
background: lightgray;
transition: all 60s ease-out;
-webkit-transition: all 60s ease;
-moz-transition: all 60s ease;
-o-transition: all 60s ease;
}
.class2 {
width: 400px;
height: 200px;
background: orange;
transition: all 60s ease-out;
-webkit-transition: all 60s ease;
-moz-transition: all 60s ease;
-o-transition: all 60s ease;
}
[.toggleClass()](http://jqueryui.com/toggleClass/)? – Vucko
您是否包含jQuery UI? switchClass是一個jQuery UI實用程序方法。 http://api.jqueryui.com/switchclass/ –