Ver Mensaje Individual
  #5 (permalink)  
Antiguo 19/12/2016, 11:06
Avatar de AngelKrak
AngelKrak
 
Fecha de Ingreso: noviembre-2014
Mensajes: 917
Antigüedad: 9 años, 5 meses
Puntos: 91
Respuesta: Armado de elementos

yo creo que no lo estabas poniendo bien, yo probe un codigo y si me sirvio, prueba el codigo ;)

Código HTML:
Ver original
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.     <meta charset="UTF-8">
  4.     <title>Document</title>
  5.     <style type="text/css">
  6.         #container {
  7.           margin: 20px;
  8.           width: 200px;
  9.           height: 200px;
  10.         }
  11.  
  12.     </style>
  13. </head>
  14. <div id="container">
  15.   <svg xmlns="http://www.w3.org/2000/svg" version="1.1" x="0px" y="0px" viewBox="0 0 100 100">
  16.     <path fill-opacity="0" stroke-width="1" stroke="#bbb" d="M81.495,13.923c-11.368-5.261-26.234-0.311-31.489,11.032C44.74,13.612,29.879,8.657,18.511,13.923  C6.402,19.539,0.613,33.883,10.175,50.804c6.792,12.04,18.826,21.111,39.831,37.379c20.993-16.268,33.033-25.344,39.819-37.379  C99.387,33.883,93.598,19.539,81.495,13.923z"
  17.    />
  18.     <path id="heart-path" fill-opacity="0" stroke-width="3" stroke="#ED6A5A" d="M81.495,13.923c-11.368-5.261-26.234-0.311-31.489,11.032C44.74,13.612,29.879,8.657,18.511,13.923  C6.402,19.539,0.613,33.883,10.175,50.804c6.792,12.04,18.826,21.111,39.831,37.379c20.993-16.268,33.033-25.344,39.819-37.379  C99.387,33.883,93.598,19.539,81.495,13.923z"
  19.    />
  20.   </svg>
  21. </div>
  22.  
  23. <script src="https://rawgit.com/kimmobrunfeldt/progressbar.js/1.0.0/dist/progressbar.js"></script>
  24. <script type="text/javascript">
  25. // [email protected] version is used
  26. // Docs: http://progressbarjs.readthedocs.org/en/1.0.0/
  27.  
  28. var bar = new ProgressBar.Path('#heart-path', {
  29.   easing: 'easeInOut',
  30.   duration: 1400
  31. });
  32.  
  33. bar.set(0);
  34. bar.animate(1.0);  // Number from 0.0 to 1.0
  35. </body>
  36. </html>