gpt4 book ai didi

jquery - 页面加载后淡入按钮

转载 作者:行者123 更新时间:2023-11-28 01:39:36 26 4
gpt4 key购买 nike

我希望这个按钮在我加载页面时经过一段延迟后淡入。

我如何在 jQuery 中执行此操作?我怎样才能让我的其他按钮在延迟后也淡入淡出?

HTML:

<button class="button button2" id="button">Enter</button>

CSS:

.button {
background-color: #4CAF50;
border: none;
color: white;
padding: 16px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin-left: 500px;
margin-top: 150px;
transition-duration: 0.4s;
cursor: pointer;
font-weight: 5000;
}

.button2 {
background-color: transparent;
color: white;
border: 2px solid white;
}

.button2:hover {
background-color: white;
color: black;
font-weight: 800;
}

最佳答案

更改类选择器,或复制您希望用于不同元素的内容。您可以用逗号分隔多个类。 500代表半秒的等待时间,你也可以在fadeIn方法里面加一个值来改变速度。

$(function(){    
setTimeout(function(){
$('.button2').fadeIn();
}, 500);
});

关于jquery - 页面加载后淡入按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50493077/

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