我一直在尝试在我的站点中实现的 JQuery 动画存在问题。
一般的想法是我的页面上有一个页脚,分为两个 TD。第 1 部分是一个图标,它会根据在第 2 部分中滚动的消息而变化。
我的 HTML 基本上是这样的:
<div id="footer">
<div class="box-ticker round">
<table width="100%" border="0" cellspacing="0" cellpadding="0" style="height:60px;">
<tr>
<td style="width:12%;background:#6dc5ed;" align="center" valign="middle"><img id="image_scroll" /></td>
<td style="width:88%;background:#9f88e2;padding;10px" class="biggest" valign="middle">
<div id="ticker"></div>
</td>
</tr>
</table>
</div>
</div>
我的代码来更新这个:
编辑:变量“html”是一个命名不佳的 JSON 数组。它包含我正在填充的数据。例如:html[0] = {'title':'这是一条消息', 'icon':'icon.png'}
$('#ticker').html("<span class='scrollingtext' id='scroll_text'></span>");
cur_index=0;
max_index=html.length;
$(document).ready(function() {
$('.scrollingtext').bind('marquee', function() {
if (cur_index >= max_index) { cur_index = 0; }
obj = JSON.parse(html[cur_index]);
$('#image_scroll').attr('src',"img/"+obj.icon);
$('#scroll_text').html(obj.title);
var scrolling_text = $('#scroll_text');
var text_container = $('#ticker');
var tw = scrolling_text.width();
var ww = text_container.width();
scrolling_text.css({ right: -tw });
scrolling_text.animate({ right: ww }, 30000, 'linear', function() {
cur_index++;
scrolling_text.trigger('marquee');
});
}).trigger('marquee');
});
最后是我的 CSS:
.box-ticker{
width:100%;
height:56px;
background:#d44d4d;
}
.round { border-radius: 20px; }
.scrollingtext{
position:absolute;
vertical-align:middle;
white-space:nowrap;
font-family: 'AsapBold', Arial, sans-serif;font-weight:normal;
font-size:30px;
float: right;
color:#FFFFFF;
}
问题是,当消息在屏幕上滚动时,它似乎根本没有被锁定在“ticker”DIV 中,而是直接滚动到页面底部,并且似乎只是忽略了我在那里的每个 DIV 标签。当我观察到 chrome 控制台中的对象更新时,HTML 似乎出现在正确的位置。
还有一个奇怪的问题是动画后面的点似乎是尾随。这似乎不会在 Firefox 中发生。
任何建议将不胜感激。
谢谢!