Home > Web Front-end > JS Tutorial > body text

Use jQuery to implement a three-dimensional digital scroll bar to increase the effect example

怪我咯
Release: 2017-03-29 15:57:36
Original
1831 people have browsed it

jqueryTo achieve the effect of adding a three-dimensional digital scroll bar, the code is divided into two parts, one part is the html structure and the other part belongs to the js code segment, which is required Friends, please refer to it!

1, html structure

<p class="numberRun1"></p>
Copy after login

2, js

<script type="text/javascript" src="js/digital_over.js" ></script>//引用
//这是自定义函数(需要在页面中进行调用)
<script>
  //数字滚动
  function digitalScroll(obj,n){
    var numRun = $(obj).numberAnimate({num:n, speed:2000, symbol:","});
    var nums = n;
    setInterval(function(){
      numRun.resetData(nums);
    },3000);
    var numWidth= $(obj).width();
    $(obj).find(&#39;.mt-number-animate&#39;).css(&#39;width&#39;,numWidth);
    $(obj).css(&#39;width&#39;,&#39;100%&#39;);
    $(obj).find(&#39;.mt-number-animate&#39;).css(&#39;margin&#39;,&#39;0 auto&#39;);
  }
  window.indexdigitalScroll=function(){
    digitalScroll($(&#39;.numberRun1&#39;),1160518);
  }
</script>
<!--这是在页面中调用的方法-->
<script>
  $(function(){
    indexdigitalScroll();
    });
</script>
Copy after login


3, Picture case

Use jQuery to implement a three-dimensional digital scroll bar to increase the effect example

The above is the detailed content of Use jQuery to implement a three-dimensional digital scroll bar to increase the effect example. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template