使用 jquery fadeIn 和 setInterval 的双 Twitter feed
我正在制作一个项目,在两个 div 中并排显示两个相反的视图。我已经完成了所有设置,以便推文显示在各自的 div 中,但我想让它们都淡入,一次一条推文(双方都可以同时淡入,我不介意)。
我的推文来自一个数组,我目前正在使用以下代码将更新推送到 div:
for(var i=0; i < tweets.length; i++)
{
$("#proTweetList").prepend("<li><img src='" + tweets[i].profile_image_url + "' />" +
tweets[i].text+"</li>");
}
并且
for(var i=0; i < tweets.length; i++)
{
$("#antiTweetList").prepend("<li><img src='" + tweets[i].profile_image_url + "' />" +
tweets[i].text+"</li>");
}
我在 Stackoverflow 上找到了一个很好的示例,如下所示:
var x=0; // The corner counter
function fading() {
$("#corner"+(++x)).fadeIn(2000); // Fade in the current corner
if (x==4) { // Last image to be faded in?
clearInterval(); // Stop interval
}
}
$(document).ready(function(){
setInterval("fading()",1000); // Call function every second
});
但我对 JQuery 非常陌生,无法弄清楚如何将此代码翻译为让两个不同 div 中的 LI 项目淡入。--
Derek
I am making a project that shows two opposite views in two divs side-by-side. I have everything set up so the Tweets show in their respective div, but I'd like to make them both fade in, one tweet at a time (both sides can fade in at once, I don't mind that).
My Tweets are coming from an array, and I'm currently using the following code to push updates to the div:
for(var i=0; i < tweets.length; i++)
{
$("#proTweetList").prepend("<li><img src='" + tweets[i].profile_image_url + "' />" +
tweets[i].text+"</li>");
}
and
for(var i=0; i < tweets.length; i++)
{
$("#antiTweetList").prepend("<li><img src='" + tweets[i].profile_image_url + "' />" +
tweets[i].text+"</li>");
}
I found a great example on Stackoverflow, which is as follows:
var x=0; // The corner counter
function fading() {
$("#corner"+(++x)).fadeIn(2000); // Fade in the current corner
if (x==4) { // Last image to be faded in?
clearInterval(); // Stop interval
}
}
$(document).ready(function(){
setInterval("fading()",1000); // Call function every second
});
but I am very new to JQuery and cannot figure out how to translate this code into getting LI items in TWO different divs to fade in.
-- Derek
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我会做这样的事情:
虽然没有测试那段代码,但我认为它会起作用。这将在 jQuery 对象($item)中创建列表项,这样您就可以直接在其上使用淡入淡出等功能。
I would do something like this:
Didn't test that piece of code though, but I think it will work. This will create the list item within a jQuery object($item), that way you can use functions like fade on it directly.
您可以使用一个简单的插件来完成此操作。这样您就可以将行为附加到任意数量的 div 上。我写了一个非常简单的(抱歉未经测试)可能会有所帮助:
您可以通过以下方式调用此插件(我假设您每个 div 都有一组推文):
You could do this with a simple plugin. This way you can attach the behaviour to as many divs as you like. I've written a very simple one (untested sorry) that may help:
You would call this plugin by going (I assume you have an array of tweets for each div):