我几乎在我需要的地方。我正在尝试使用 jquery在此处匹配此 Flash 标头。这是我到目前为止的链接,当我尝试将文本从右侧滑入时,问题就开始了。它最终位于文档底部附近。我尝试了不同组合中的绝对定位和相对定位,但没有奏效。这是我的代码:
// JavaScript Document
$(document).ready(function() {
$("#wrap").css({
'width':'900px',
'margin':'0px auto',
'height':'150px',
'background':'#333',
'overflow':'hidden'
});
// css for first text
$("#text1").css({
'position':'relative',
'margin':'0px auto',
'text-align':'center',
'color':'#fff',
'font-size':'140px',
'top':'-120px',
'opacity':'0.5'
});
// animate first text
$("#text1").animate({
'top':'150px'
}, 3000, 'linear');
// css for second text
$("#text2").css({
'position':'relative',
'margin':'0px auto',
'text-align':'center',
'color':'#fff',
'font-size':'140px',
'bottom':'-80px',
'opacity':'0.5'
});
// animate second text
$("#text2").animate({
'bottom':'330px'
}, 3500, 'linear');
// css for third text
$("#text3").css({
'position':'relative',
'margin':'0px auto',
'text-align':'center',
'color':'#fff',
'font-size':'60px',
'right':'0px',
});
// animate third text
$("#text3").animate({
'right':'160px'
}, 3000, 'linear');
});
id 是 text3。抱歉,我无法正确格式化代码。