多次更改背景图像JS(wordpress)

时间:2016-04-29 18:51:59

标签: javascript html css wordpress

 var images = [
  'http://www.pl/realizacje/wordpressx2/wp-content/themes/nex/images/livestream.jpg',
 'http://www.pl/realizacje/wordpressx2/wp-content/themes/nex/images/livestream1.jpg',
 'http://www.pl/realizacje/wordpressx2/wp-content/themes/nex/images/livestream3.jpg',
 'http://www.pl/realizacje/wordpressx2/wp-content/themes/nex/images/livestream4.jpg'
],
    i = 0,
    n = images.length;

$("#change-image").click(function(){ 
   $("#livestream").css({backgroundImage: "url("+ images[i++ % n] +")" });
});



<div id="zmianatapety"><button id="change-image">ZMIEŃ TŁO</button></div> </div>

要更改图像背景,在html版本中它工作得很完美,但现在我为wordpress准备主题,并且你知道style.css在主题文件夹中,问题是脚本没有看到style.css和不行。

如果我能以某种方式添加到style.css的脚本地址?

0 个答案:

没有答案