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>
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('.mt-number-animate').css('width',numWidth); $(obj).css('width','100%'); $(obj).find('.mt-number-animate').css('margin','0 auto'); } window.indexdigitalScroll=function(){ digitalScroll($('.numberRun1'),1160518); } </script> <!--这是在页面中调用的方法--> <script> $(function(){ indexdigitalScroll(); }); </script>
3, Picture case
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!