我在網上找到了一個教程。用jquery動畫。我會在我網站的標題中爲h1標籤製作動畫。我想在我的網站上的標題標題。我將這段代碼用於動畫。jQuery緩動插件問題
/* Slogan (h1) effect header */
$(function() {
// make sure your h2's have a position relative
$('#header h1').css({
left: '600px'
})
jQuery.easing.def = 'easeOutBounce';
setTimeout(animate, 1000);
});
function animate() {
$('#header h1').animate({
left: 0
}, 1000);
}
/* Effect op logo */
$(function() {
$('#header .logo').css({
top: '-600px'
})
jQuery.easing.def = 'easeOutBounce';
setTimeout(animate, 1000);
});
function animate() {
$('#header .logo').animate({
top: 0
}, 1000);
}
對於這個動畫,我使用了jquery.easing1.3插件。現在來解決問題。隨着我做的代碼。只有對徽標的影響纔會起作用。對h1的影響將會發揮作用。我應該做什麼?那h1標誌和header.logo動畫?
謝謝!
其工作謝謝大家! – Mike 2010-07-09 14:44:43