Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.59 KB | None | 0 0
  1. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
  2.  
  3. <div id="shiva"><span class="count">200</span><br><font>Юзеров</font></div>
  4.  
  5.  
  6. <div id="shiva"><span class="count">20</span><br><font>Курсов</font></div>
  7.  
  8.  
  9. <div id="shiva"><span class="count">120</span><br><font>Пройденных курсов</font></div>
  10.  
  11.  
  12.  
  13.  
  14. <script type="text/javascript">
  15.     $('.count').each(function () {
  16.     $(this).prop('Counter',0).animate({
  17.         Counter: $(this).text()
  18.     }, {
  19.         duration: 2000,
  20.         easing: 'swing',
  21.         step: function (now) {
  22.             $(this).text(Math.ceil(now));
  23.         }
  24.     });
  25. });
  26. </script>
  27.  
  28. <style type="text/css">
  29.     #shiva
  30. {
  31.   width: 300px;
  32.     height: 300px;
  33.     background: tomato;
  34.     -moz-border-radius: 50px;
  35.     -webkit-border-radius: 50px;
  36.     border-radius: 150px;
  37.   float:left;
  38.   margin:5px;
  39. }
  40. .count
  41. {
  42.   line-height: 100px;
  43.   color:white;
  44.   margin-left:65px;
  45.   font-size:25px;
  46. }
  47.  
  48. font
  49. {
  50.   line-height: 100px;
  51.   color:white;
  52.   margin-left:10px;
  53.   font-size:15px;
  54. }
  55. #talkbubble {
  56.    width: 120px;
  57.    height: 80px;
  58.    background: red;
  59.    position: relative;
  60.    -moz-border-radius:    10px;
  61.    -webkit-border-radius: 10px;
  62.    border-radius:         10px;
  63.   float:left;
  64.   margin:20px;
  65. }
  66. #talkbubble:before {
  67.    content:"";
  68.    position: absolute;
  69.    right: 100%;
  70.    top: 26px;
  71.    width: 0;
  72.    height: 0;
  73.    border-top: 13px solid transparent;
  74.    border-right: 26px solid red;
  75.    border-bottom: 13px solid transparent;
  76. }
  77.  
  78. .linker
  79. {
  80.   font-size : 20px;
  81.   font-color: black;
  82. }
  83. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement