gpt4 book ai didi

javascript - 如何使用 .delay(x).animate( {'opacity' :'1' },x); 淡化不透明度为 0 的每个内部元素?

转载 作者:行者123 更新时间:2023-11-27 23:35:55 25 4
gpt4 key购买 nike

我正在尝试淡入这个 div 中的每个元素,我以此为例。问题是我不知道为什么动画只在父级的内部元素中不改变。

我使用了以下 jQuery 但不起作用(也尝试了其他东西):jQuery('h1#hideme.welcome__title').delay(100).animate({'opacity':'1'}, 400);或 jQuery('.welcome__title').delay(100).animate({'opacity':'1'},400);或 jQuery('#hideme').delay(100).animate({'opacity':'1'},400);

我想专门用上面几行

<div class="section_one">
<div class="welcome_wrapper">
<div id="" class="welcome__container">
<div class="welcome">
<h1 id="hideme" class="welcome__title">Welcome to Dryft</h1>
<div class="welcome__info">
<p >A Boston waterfront restaurant destination with panoramic views of the harbor. Our menu highlights
many
exciting flavors in some of our most classic New England dishes with a focus on fresh seafood and
local
ingredients.</p>
</div>
<button class="btn-theme">
Book Event<i class="fas fa-arrow-right fa-xs"></i>
</button>
</div>
</div>
</div>
</div>

我的 CSS:

#hideme {

opacity: 0;
}

最佳答案

它似乎工作正常。我为您编辑了一些内容以检查其进展情况。我将 hidemeID 更改为 class 并将其添加到将受到影响的 3 个 elements(标题、文本和按钮)。所以我设置了 jQuery 来实现它。

HTML:

<div class="section_one">
<div class="welcome_wrapper">
<div id="" class="welcome__container">
<div class="welcome">
<h1 class="welcome__title hideme">Welcome to Dryft</h1>
<div class="welcome__info hideme">
<p >A Boston waterfront restaurant destination with panoramic views of the harbor. Our menu highlights
many
exciting flavors in some of our most classic New England dishes with a focus on fresh seafood and
local
ingredients.
</p>
</div>
<button class="btn-theme hideme">
Book Event<i class="fas fa-arrow-right fa-xs"></i>
</button>
</div>
</div>
</div>
</div>

CSS:

.hideme {
opacity: 0;
}

jQuery:

$('h1.hideme').delay(100).animate({'opacity':'1'},400);
$('.welcome__info.hideme').delay(400).animate({'opacity':'1'},400);
$('.btn-theme.hideme').delay(700).animate({'opacity':'1'},400);

关于javascript - 如何使用 .delay(x).animate( {'opacity' :'1' },x); 淡化不透明度为 0 的每个内部元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57243762/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com