<script type="text/javascript">
$(document).ready(function(){
setInterval(spinna, 3000);
var index = 0,
imgs = ['bg2.jpg', 'scrib.jpg'];
function spinna(){
console.log(imgs[index]);
$('#header_bg').fadeIn('slow',function(){
$('#header_bg').css({
'background-image' : 'url(' + '<?php echo get_template_directory_uri(); ?>/library/images/'+ imgs[index] +'' + ')'
});
});
index == 0 ? index = 1 : index = 0;
}
});
ライブコード http://gmcfosho.com/
このコードのどこが間違っているのですか?
これに関するヘルプが最も役立ちます