我正在嘗試使用一個類似的腳本,其中一個是WordPress,但它不會工作,我知道這是WordPress的主角/看到jQuery的方式。如何寫這個在WordPress中工作?我只是交換圖像的方框。在Wordpress中運行jquery腳本
var fadeinBox = $("#box2");
var fadeoutBox = $("#box1");
function fade() {
fadeinBox.stop(true, true).fadeIn(2000);
fadeoutBox.stop(true, true).fadeOut(2000, function() {
var temp = fadeinBox;
fadeinBox = fadeoutBox;
fadeoutBox = temp;
setTimeout(fade, 1000);
});
}
fade();
.box {
position: absolute;
height: 100px;
width: 100px;
}
#wrapper {position: relative;}
#box1 {background-color: #F00;}
#box2 {background-color: #00F; display: none;}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<div id="wrapper">
<div id="box1" class="box"></div>
<div id="box2" class="box"></div>
</div>
下面是我對jsfiddle
而不是使用'$'嘗試'jQuery'。 – Jai
試過,沒有工作 –
你在WordPress中把這個腳本包含在哪裏? –