gpt4 book ai didi

javascript - 在 php 启动时仅加载一次启动画面

转载 作者:行者123 更新时间:2023-11-30 08:35:06 25 4
gpt4 key购买 nike

我已经使用 jquery 的 fadeOut 选项创建了启动画面。它工作正常,但问题是每次我单击转到下一页时屏幕都在加载。我只在启动时需要启动画面。我想我需要使用 session 或其他东西,但我找不到解决方案。我正在使用以下脚本。

 $(document).ready(function () {
$("#splashscreen").click(function () {
$("#splashscreen").fadeOut(2000);
});
});

最佳答案

这应该有效:

$(document).ready(function () {
if( $.cookie('splashscreen') == null ) { // Here you are checking if cookie is existing if not you are showing a splash screen and set a cookie
$("#splashscreen").fadeIn();
$.cookie("splashscreen", 1, { expires : 10 }); // cookie is valid for 10 days
}
$("#splashscreen").click(function () {
$("#splashscreen").fadeOut(2000);
});
});

关于javascript - 在 php 启动时仅加载一次启动画面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32203664/

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