原始来源和示例:
http://www.htmldrive.net/items/show/397/Vertical-Scrolling-News-Ticker-With-jQuery-jCarouse
再一次问好!!滚动新闻代码 Jquery 有一些问题:
第一个问题:Internet Explorer 错误消息
“对象不支持此属性或方法”行:269:第 269 行)
ticker.mouseenter(function() { // <---Line: 269
//stop current animation
ticker.children().stop();
});
- 第二个问题:单击新闻选项(被定向到页面链接)的唯一方法是通过网站示例中为蓝色的文本标题。我希望用户能够单击包含图像的选项的整个部分。
- 第三个问题:当新闻滚动时,它看起来是一体的,有没有办法添加一行来分隔每个部分。
- 第四个问题:当用户将鼠标放在某个部分上时,有没有办法暂停自动滚动?
- 有没有办法在标题和类别下添加更多文本?
这是脚本本身,IE 问题在下方右侧用箭头突出显示:
<script type="text/javascript">
$(function() {
//cache the ticker
var ticker = $("#ticker");
//wrap dt:dd pairs in divs
ticker.children().filter("dt").each(function() {
var dt = $(this),
container = $("<div>");
dt.next().appendTo(container);
dt.prependTo(container);
container.appendTo(ticker);
});
//hide the scrollbar
ticker.css("overflow", "hidden");
//animator function
function animator(currentItem) {
//work out new anim duration
var distance = currentItem.height();
duration = (distance + parseInt(currentItem.css("marginTop"))) / 0.020;
//animate the first child of the ticker
currentItem.animate({ marginTop: -distance }, duration, "linear", function() {
//move current item to the bottom
currentItem.appendTo(currentItem.parent()).css("marginTop", 0);
//recurse
animator(currentItem.parent().children(":first"));
});
};
//start the ticker
animator(ticker.children(":first"));
//set mouseenter
ticker.mouseenter(function() {
ticker.mouseenter(function() { // <---Line: 269
//stop current animation
ticker.children().stop();
});
//set mouseleave
ticker.mouseleave(function() {
//resume animation
animator(ticker.children(":first"));
});
});
</script>
我会深深感激的!!