我想知道我的标签或标签是否有些奇怪。我有一些脚本,运行不正常,但适用于JS小提琴。以下是代码:


 < head>
< title>网站< / title>
< link rel =“ stylesheet“href =”style.css“>
< link href =”https://fonts.googleapis.com/css?family=Quicksand“rel =”stylesheet“>
<脚本>
(function(){

 var parallax = document.querySelectorAll(“#textPlaceOne”),
 speed = -0.5;

 window .onscroll = function(){
 [] .slice.call(parallax).forEach(function(el,i){

 var windowYOffset = window.pageYOffset,
 elBackgrounPos =“50%”+(windowYOffset * speed)+“px”;

 el.style.backgroundPosition = elBackgrounPos;

});
};& #xA;
})();

< /脚本>
< /头>
 代码>

 
 
可能是愚蠢的事情,但谢谢你的帮助!