1
使用jQuery夜光我想在我的頁面中使用this jquery glow plugin。 (DEMO)在間隔
我希望我的文字每4秒閃爍一次。我寫這段代碼,但它不起作用。
$(document).ready(function() {
$('.white').addGlow({ textColor: 'white', haloColor: '#aaa', radius: 100 });
setInterval(function() {
$('.white').mouseenter();
setTimeout(function() { }, 2000);
$('.white').mouseleave();
}, 2000);
});
我該怎麼做?
感謝
你想讓它開始眨眼,對吧? – 2012-04-02 10:21:38
不,我希望它自動啓動 – Arian 2012-04-02 10:25:20