Css文本动画问题

时间:2018-06-05 07:37:15

标签: javascript html css animation text

下面的代码在向下滚动时会显示“Dedicated People”,因为某些原因它在我的浏览器中不起作用?我忘记了头部的参考吗?当我使用codepen它工作正常但在任何其他浏览器中它不显示任何东西。这背后的原因是什么,以及如何解决Chrome浏览器的问题。

$(function() {
  var text = $(".text");
  $(window).scroll(function() {
    var scroll = $(window).scrollTop();

    if (scroll >= 10) {
      text.removeClass("hidden");
    } else {
      text.addClass("hidden");
    }
  });
});
@import url('https://fonts.googleapis.com/css?family=Muli:300,400,700');

* {
  margin: 0;
  padding: 0;
}
body {
  background-color: #000;
  height: 200vh;
  font-family: 'Muli', sans-serif;
}
.text {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  list-style: none;
  border-bottom: 0;
}

.text.hidden {
  border-bottom: 1px solid #fff;
}

.text li {
  display: inline-block;
  float: left;
  font-weight: 700;
  font-size: 2em;
  color: #fff;
  opacity: 1;
  transition: all 0.5s ease-in-out;
  max-width: 2em;
}
.text.hidden li.spaced {
  padding-left: 0;
}
.text li.spaced {
  padding-left: 0.5em;
}

.text.hidden li.ghost {
  opacity: 0;
  max-width: 0;
}
<ul class="text hidden">
  <li>D</li>
  <li class="ghost">e</li>
  <li class="ghost">d</li>
  <li class="ghost">i</li>
  <li class="ghost">c</li>
  <li class="ghost">a</li>
  <li class="ghost">t</li>
  <li class="ghost">e</li>
  <li class="ghost">d</li>
  <li class="spaced">P</li>
  <li class="ghost">e</li>
  <li class="ghost">o</li>
  <li class="ghost">p</li>
  <li class="ghost">l</li>
  <li class="ghost">e</li>
</ul>

2 个答案:

答案 0 :(得分:1)

看起来你忘记了Jquery脚本:

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>

这是JSFiddle: https://jsfiddle.net/8dc7toLn/

&#13;
&#13;
$(function() {
  var text = $(".text");
  $(window).scroll(function() {
    var scroll = $(window).scrollTop();

    if (scroll >= 10) {
      text.removeClass("hidden");
    } else {
      text.addClass("hidden");
    }
  });
});
&#13;
@import url('https://fonts.googleapis.com/css?family=Muli:300,400,700');

* {
  margin: 0;
  padding: 0;
}
body {
  background-color: #000;
  height: 200vh;
  font-family: 'Muli', sans-serif;
}
.text {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  list-style: none;
  border-bottom: 0;
}

.text.hidden {
  border-bottom: 1px solid #fff;
}

.text li {
  display: inline-block;
  float: left;
  font-weight: 700;
  font-size: 2em;
  color: #fff;
  opacity: 1;
  transition: all 0.5s ease-in-out;
  max-width: 2em;
}
.text.hidden li.spaced {
  padding-left: 0;
}
.text li.spaced {
  padding-left: 0.5em;
}

.text.hidden li.ghost {
  opacity: 0;
  max-width: 0;
}
&#13;
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<ul class="text hidden">
  <li>D</li>
  <li class="ghost">e</li>
  <li class="ghost">d</li>
  <li class="ghost">i</li>
  <li class="ghost">c</li>
  <li class="ghost">a</li>
  <li class="ghost">t</li>
  <li class="ghost">e</li>
  <li class="ghost">d</li>
  <li class="spaced">P</li>
  <li class="ghost">e</li>
  <li class="ghost">o</li>
  <li class="ghost">p</li>
  <li class="ghost">l</li>
  <li class="ghost">e</li>
</ul>
&#13;
&#13;
&#13;

答案 1 :(得分:0)

您的代码在我的浏览器中运行正常。如果你还没有,请记住包含jQuery。

转到此处:https://code.jquery.com/

得到这个:

<script
  src="https://code.jquery.com/jquery-3.3.1.min.js"
  integrity="[insert]"
  crossorigin="anonymous">
</script>

并将其添加到您的文档中。