-
-
Save vemman/50e078ab07a2dda657dcad4359f527af to your computer and use it in GitHub Desktop.
GSAP (source: https://jsfiddle.net/add1mezq/?utm_source=website&utm_medium=embed&utm_campaign=add1mezq)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .wrapper { | |
| margin: 30px; | |
| } | |
| #battery { | |
| width: 500px; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="wrapper"> | |
| <svg id="battery" enable-background="new 0 0 512 512" height="512px" version="1.1" viewBox="0 0 512 512" width="512px" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> | |
| <circle cx="256" cy="256" fill="#FFCA66" r="256" /> | |
| <g class="battery"> | |
| <rect class="background" fill="#40535C" height="172.97" width="244.091" x="113.712" y="168.212" /> | |
| <g class="charge"> | |
| <rect class="top" fill="#8DC63F" height="167.712" width="0" x="119.272" y="169.47" /> | |
| <rect class="bottom" opacity="0.05" fill="#000" height="86.636" width="0" x="114.045" y="255.772" /> | |
| </g> | |
| <g class="outline"> | |
| <path d="M379.425,203.045h-7.546v105.546h7.546c17.515,0,31.727-14.061,31.727-31.409v-42.728 C411.151,217.105,396.939,203.045,379.425,203.045z" fill="#FFFFFF" /> | |
| <path d="M341.182,179.333c5.546,0,10.076,4.697,10.076,10.47v132.409c0,5.758-4.53,10.47-10.076,10.47H131.863 c-5.561,0-10.075-4.712-10.075-10.47V189.803c0-5.772,4.515-10.47,10.075-10.47H341.182 M341.182,158.394H131.863 c-17.121,0-31.015,14.061-31.015,31.409v132.409c0,17.333,13.894,31.394,31.015,31.394h209.318 c17.121,0,31.016-14.061,31.016-31.394V189.803C372.197,172.454,358.303,158.394,341.182,158.394L341.182,158.394z" fill="#FFFFFF" /> | |
| </g> | |
| </g> | |
| </svg> | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var battery = document.getElementById('battery'); | |
| var chargeTop = $('.charge .top', battery); | |
| var chargeBottom = $('.charge .bottom', battery); | |
| var green = "#8DC63F"; | |
| var yellow = "#F9ED32"; | |
| var red = "#F15A29"; | |
| var batteryTl = new TimelineMax({ repeat: -1 }); | |
| batteryTl.to(chargeTop, 0, {fill:red}) | |
| .to(chargeTop, 3, { attr:{'width':'+=240'} } ) | |
| .to(chargeBottom, 3, { attr:{'width':'+=240'} }, "-=3") | |
| .to(chargeTop, 0.5, {fill:yellow}, 0.5) | |
| .to(chargeTop, 0.5, {fill:green}, 1.5) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment