0
我有這段代碼。任何人都可以幫我設置1天的cookie。我需要每天只顯示一次視頻。Cookie顯示一次視頻
var rfm = {
setup: function() {
jQuery('.video-landing').css('display', 'block');
jQuery('.logo img').fadeOut(0);
}
init: function() {
if (Math.max(document.documentElement.clientWidth, window.innerWidth || 0) >= 1040) {
rfm.setup();
setTimeout(function() {
rfm.fadeOutVideo();
rfm.fadeOutBackground();
setTimeout(function() {
rfm.resizeAndRepositionLogo();
setTimeout(function() {
rfm.fadeOutOverlay();
rfm.fadeInSiteLogo();
}, 1500)
}, 0);
}, 3000);
}
}
}
jQuery(document).ready(function() {
rfm.init();
});
您可以使用[這些函數](https://scotch.io/quick-tips/easily-create-read-and-erase-cookies-with-jquery)來編寫,讀取和刪除cookie。 –