gpt4 book ai didi

css - jquery.ui 隐藏固定元素

转载 作者:太空宇宙 更新时间:2023-11-04 11:09:17 24 4
gpt4 key购买 nike

我想使用 jquery 的 hide() 函数来隐藏页面上闪烁的消息。

当我加载页面时,我想显示它 5 秒然后让它消失。

$('#flash-message').show("clip");

setTimeout(function() {
$("#flash-message").hide("clip", { direction: 'vertical' }, 1000);
}, 5000);

如果我使用固定或绝对位置并且我需要将消息放在页面顶部的固定位置,它不会执行“动画”。

有解决办法吗?感谢您的帮助

最佳答案

要在页面加载时调用事件,请使用:

$(document).ready(function(){ 
//code here
});

如果你只想使用“clip”试试这个:

$("#flash-message").hide("clip", {direction: "vertical"}, 5000) 

或者尝试使用动画:

$('#flash-message').animate({
opacity: 0.25,
direction: "left",
}, 5000, function() {
$(this).hide();
});

或者更简单的:

$("#flash-message").click(function() {
$("#flash-message").fadeOut("slow");
});

关于css - jquery.ui 隐藏固定元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33762018/

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