Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.89 KB | None | 0 0
  1. <div class="score mtl">
  2.             <h2 class="happy-title color-framboise u-uppercase mbm">Happy score</h2>
  3.             <div class="score-diagram mrauto mlauto flex-container align-center justify-center">
  4.                 <div class="pie">
  5.                     <style type="text/css">
  6.                     @keyframes countdown {
  7.                         from {
  8.                           stroke-dashoffset: 0px;
  9.                         }
  10.                         to {
  11.                           stroke-dashoffset: {{ 754 * (1 - (100 -  $res ) /100 }};
  12.                         }
  13.                       }
  14.                     </style>
  15.                     <svg>
  16.                         <circle r="120" cx="150" cy="150"></circle>
  17.                     </svg>
  18.                 </div>
  19.                 <div class="pourcent color-framboise font-headings w100">{{ $res }}%</div>
  20.             </div>
  21.  
  22.         </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement