jQuery fadeIn() 具有多个 div 的不同间隔

发布于 2024-11-25 23:07:32 字数 297 浏览 2 评论 0原文

我有一个包含六个 div 的主页。它们是不同形状的盒子,我希望它们在页面加载时以随机间隔淡入。 javascript代码如下:

$(document).ready(function(){
    $("#topleft").fadeIn(2000).animate({opacity: 1.0});
});

当然,我需要将所有六个div作为目标,而不仅仅是一个,并且我希望它们在页面加载后大约3秒内随机淡入。我该怎么办呢?顺便说一句,我正在使用 jQuery,因为我是新手,所以可能有一些我不知道的东西可以使用。

I have a homepage with six div's. They are different shaped boxes, and I want them to fade in at random intervals when the page loads. The javascript code is as follows:

$(document).ready(function(){
    $("#topleft").fadeIn(2000).animate({opacity: 1.0});
});

Of course, I need all six div's to be targeted, not just one, and I want them to randomly fade in within about 3 seconds of the page load. How would I go about this? By the way, I am using jQuery and since I'm new at it, there may be something I could use that I don't know about.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

千と千尋 2024-12-02 23:07:32

您可能想要做的是让所有六个 div 具有相似的类,以便您可以同时定位它们。

这是一个工作示例: http://jsfiddle.net/Akkuma/hadbz/

What you'll probably want to do is have all six divs have a similar class, so that you can target them all at once.

Here is a working example: http://jsfiddle.net/Akkuma/hadbz/

小草泠泠 2024-12-02 23:07:32

然后使用与 alldivs 相同的类创建所有 div:

$('.alldivs').each(function() {
    $(this).fadeIn(Math.floor(Math.random()*3000)).animate({opacity: 1.0});
});

Create all divs with the same class like alldivs then:

$('.alldivs').each(function() {
    $(this).fadeIn(Math.floor(Math.random()*3000)).animate({opacity: 1.0});
});
送你一个梦 2024-12-02 23:07:32
function randomFromTo(from, to){
    return Math.floor(Math.random() * (to - from + 1) + from);
}
$('.six_div').each(function () {
    setTimeout(function () {
        $(this).animate({opacity: 1}, 2000);
    }, randomFromTo(100,3000));
});

注意:“six_div”类需要添加到六个 div 中的每一个中,以便它们全部被选中。

function randomFromTo(from, to){
    return Math.floor(Math.random() * (to - from + 1) + from);
}
$('.six_div').each(function () {
    setTimeout(function () {
        $(this).animate({opacity: 1}, 2000);
    }, randomFromTo(100,3000));
});

NOTE: the 'six_div' class will need to be added to each of the six divs so they will all be selected.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文