1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

jQuery -counterUp

Posted at

CounterUpの方法
1.まずhtmlでcounterクラスを作成し、価格など動かしたい数字を記入する。
2.下に貼ったurlに飛びzipファイルをダウンロードする。
3.自分のエディタにあるjsフォルダに
jquery.waypoints.min.js
jquery.counterup.min.js
を保存する。
4.bodyの一番下に二つのファイル名を記述する。
5.エディタにhtml,cssと同様にjsのファイルを作りそこに$(function)から始まるやつをペーストするだけ。

jquery-counter

$(function(){
  $('.counter').counterUp({
    delay:10,
    time:2000
  });
});
<body>
    <script src="jquery.waypoints.min.js"></script>
    <script src="jquery.counterup.min.js"></script>
</body>

URL載せときます。

https://github.com/ciromattia/jquery.counterup

ここから飛んでいけます。

1
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?