作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经使用 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/
我是一名优秀的程序员,十分优秀!