うまくいけば、それは迅速で簡単な質問になるでしょう.
簡単な関数を作成していますが、ページが読み込まれてから約 3 ~ 4 秒後にトリガーする必要があります。方法がわかりません。
これが私のスクリプトです
$(function () {
var slideout = $('#slideout');
slideout.animate({
right: '-200px'
}, 1000, function () {});
$(".out").toggle(function () {
$(this).addClass('in');
slideout.animate({
right: '0px'
}, {
queue: false,
duration: 500
});
}, function () {
$(this).removeClass('in');
slideout.animate({
right: '-200px'
}, {
queue: false,
duration: 500
});
});
$(".close").click(function () {
$(this).removeClass('out');
slideout.animate({
right: '-200px'
}, {
queue: false,
duration: 1000
});
slideout.fadeOut({
duration: 1000
});
});
});
どんな助けでも大歓迎です。