jquery – 为什么Stellar.js中的元素没有移动?

前端之家收集整理的这篇文章主要介绍了jquery – 为什么Stellar.js中的元素没有移动?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在标题中有3个圆圈,当通过stellar.js滚动时,假设它们以不同的速率下降;不幸的是,他们甚至不动.它们都有位置属性(绝对);
此外,我已经将数据 – 恒星比率应用于适当的标签.为什么stellar.js不起作用?更进一步,如何测试jQuery是否只是导航错误

HTML

<div id="companyInfo" >
    <div class="circlefront" data-stellar-ratio="1.2"></div>
    <div class="circlemiddle" data-stellar-ratio="1.8"></div>
    <div class="circlerear" data-stellar-ratio="3"></div>
    <div class="infoWrapper">
      <h1>Towing,you can't do it without a truck,i have a truck</h1>
      <p>Id abunum ta inte publicae adhui senterem praties tantiena quitas vis,factum destus. Loca vehebus; et? Ti. Upionem,sil tala morbit ina,nique confendum tati et acepsen ihilin sula audactorips,fatur ia consign arisulos inatuis.</p>
    </div>
  </div>

CSS

section#company div#companyInfo {
  height: 24em;
  line-height: 3em;
  margin: 0 auto;
  color: #fff;
}
section#company div#companyInfo div.infoWrapper {
  width: 960px;
  margin: 5em auto;
  text-align: center;
}
section#company div#companyInfo div.infoWrapper h1 {
  font-size: 2em;
}
section#company div#companyInfo div.infoWrapper p {
  line-height: 1.2em;
  font-size: 1.125em;
}
section#company .circlefront {
  background: rgba(255,255,0.7);
  width: 500px;
  height: 500px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  position: absolute;
  top: 300px;
  left: 400px;
}
section#company .circlemiddle {
  background: rgba(255,0.5);
  width: 250px;
  height: 250px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  position: absolute;
  top: 100px;
  left: 200px;
}
section#company .circlerear {
  background: rgba(255,0.3);
  width: 100px;
  height: 100px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  position: absolute;
  top: 350px;
  right: 100px;
}

jQuery的

<script src="asset/js/libs/jquery.stellar.min.js"></script> 
<script type="text/javascript">

$(function(){
            $.stellar({
                horizontalScrolling: false,verticalOffset: 0,});
        });
</script>

资源
stellar.js
tutorial on using stellar.js

解决方法

我刚刚保存了你的网站&围绕你的代码玩了一切对我来说很好,但仍有一些问题.所以,我删除了所有脚本标签&添加了jquery&来自恒星演示和恒星的恒星它工作正常.我发现只有一个错误,但我不知道这是这种行为的原因. verticaloffset后有一个额外的逗号:0.
$(function(){
    $.stellar({
        horizontalScrolling: false,/* Remove this comma at the end */
    });
});

下面是你的网站在一个zip文件夹下载它&看看代码.

https://dl.dropbox.com/u/19982181/svs.zip

希望这会帮助你.

原文链接:https://www.f2er.com/jquery/177337.html

猜你在找的jQuery相关文章