創建一個按鈕,變成具有彈性效果的進度條:Elastic Progress
創建一個按鈕,變成具有彈性效果的進度條。
Article on Codrops
Instructions
This project requires GSAP. You can use either TweenMax...
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/1.18.0/TweenMax.min.js"></script>
...or TweenLite, with EasePack and the CSS and attr plugins:
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/1.18.0/TweenLite.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/1.18.0/easing/EasePack.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/1.18.0/plugins/CSSPlugin.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/1.18.0/plugins/AttrPlugin.min.js"></script>
Then, include theelastic-progress.min.jsfile, located in thedistfolder:
<script src="path/to/js/elastic-progress.min.js"></script>
Usage
Create the element you want to turn into a button:
<div class="Upload" role="button" aria-label="Upload file"></div>
Note: We are using adivelement withrole="button"instead of abuttonelement because, according to W3C recommendation,buttonelements should have no interactive elements as descendants.
Then, via JS:
var element=document.querySelector('.Upload'); var progress=new ElasticProgress(element, { /*options*/ }); // or... var progress=new ElasticProgress('.Upload', { /*options*/});
Or, in case you are using jQuery:
$('.Upload').ElasticProgress({/*options*/});
本文由用戶 pcbbe 自行上傳分享,僅供網友學習交流。所有權歸原作者,若您的權利被侵害,請聯系管理員。
轉載本站原創文章,請注明出處,并保留原始鏈接、圖片水印。
本站是一個以用戶分享為主的開源技術平臺,歡迎各類分享!