私はまだこのウェブのもののほとんどで初心者ですが、私はdivを私が作成したウェブサイトの前にロードするようにしようとしていました。ここに私のコードはを通じてサイクルに下回っており、正しいdivの取得:プリローダーの問題
$(function() {
$('#splash-holder').delay(6000).toggle('#splash-main');
var counter = 0,
divs = $('#splash-one, #splash-two, #splash-three, #splash-five');
function showDiv() {
divs.hide() // hide all divs
.filter(function (index) { return index == counter % 3; }) // figure out correct div to show
.fadeIn('fast'); // and show it
counter++;
}; // function to loop through divs and show correct div
showDiv(); // show first div
setInterval(function() {
showDiv(); // show next div
}, 13 * 180); // do this every 10 seconds
});
そこで私は、このプリローダースクリプトを使用します。ここでは
$(window).load(function() {
$('#preloader').delay(6000);
$('#preloader').fadeTo('fast', 0.1 , function() {
$('body').css('overflow','visible');
$(this).remove();
});
});
は私のコードは次のとおりです。
<div id="preloader">
<div id="spinner_container">
<div id="splash-holder">
<div id="splash-title" class="hFont">We <img src="<?php bloginfo('template_directory'); ?>/images/logo-c.png" /></div>
<div id="splash-one" class="hFont">conversations not messages.</div>
<div id="splash-two" class="hFont">bridges not silos.</div>
<div id="splash-three" class="hFont">things differently.</div>
</div><!-- #splash-holder -->
</div><!-- #spinner-container -->
</div><!-- #preloader -->
これは動作しますが、しかし、私はこれをコーディングするよりクリーンな方法があるのだろうかと思っていました。
これは、phpよりもjsタグの方が適しています。答えとして、最初にウェブサイト(ブラウザの法則)を読み込み、残りのページが隠れている間にdivを変更する必要があります。 – khael
PHPタグを削除しました。この問題の何もPHPです。 – ceejayoz
私がしようとしていることを達成する最良の方法は何でしょうか。どんな助けでも大歓迎です。私はKhaelがWebサイトを読み込んでdivを修正し、ページの残りの部分が隠されていると言ったのを知っています。誰かがこれで私を助けることができますか? – Outlawsessy