| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- <!DOCTYPE HTML>
- <html>
- <head>
- <meta charset="UTF-8">
- <meta name="robots" content="index,follow">
- <meta name="apple-mobile-web-app-capable" content="yes">
- <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
- <meta name="description" content="A javascript class that animates a numerical value by counting to it.">
- <title>CountUp.js</title>
- <link rel="stylesheet" type="text/css" href="https://inorganik.github.io/assets/css/style.css">
- <script src="demo/demo.js" type="module"></script>
- <script nomodule src="dist/countUp.umd.js"></script>
- <script nomodule src="demo/demo-nomodule.js"></script>
- <!-- Google tag (gtag.js) -->
- <script async src="https://www.googletagmanager.com/gtag/js?id=G-QXSCCPQ13N"></script>
- <script>
- window.dataLayer = window.dataLayer || [];
- function gtag(){dataLayer.push(arguments);}
- gtag('js', new Date());
- gtag('config', 'G-QXSCCPQ13N');
- </script>
- </head>
- <body>
- <a class="forkMe" href="https://github.com/inorganik/CountUp.js"><img src="https://inorganik.github.io/assets/img/forkme_custom_indigo.png" alt="Fork me on GitHub"></a>
- <div id="wrap">
- <header>
- <div id="github"><a class="block" href="https://inorganik.github.io"></a></div>
- <div class="leaderLine">////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////</div>
- <div id="logo"><a class="block" href="https://inorganik.net" alt="inorganik produce, inc"></a></div>
- </header>
- <section>
- <div class="col full">
- <h1>CountUp.js <small id="version" class="lt-gray"></small></h1>
- </div>
- <div class="col full">
- <p>CountUp.js is a dependency-free, lightweight JavaScript class that can be used to quickly create animations that display numerical data in a more interesting way.</p>
- <p>Install via npm/yarn using the package name <code class="indigo large">countup.js</code>.</p>
- <h3 class="marginTop marginBottom"><a class="lime weight700" href="https://github.com/inorganik/CountUp.js">View on Github</a></h3>
- </div>
- </section>
- <section>
- <p style="position:absolute; top:5px; left:0;">Current stars:</p>
- <h1 class="jumbo" id="myTargetElement">0</h1>
- </section>
- <section id="errorSection" style="background-color:#FFDCDC; display:none" class="col-inner">
- <h4 id="error" style="color: red" class="noMargin"></h4>
- </section>
- <section>
- <form>
- <h4 class="inlineLeft noMargin weight300">Params:</h4>
- <div class="inlineLeft marginLeft marginRight">
- <input type="text" value="0" id="startVal" style="width:80px" class="updateCodeVis">
- <label class="inlineLabel">Start</label>
- </div>
- <input id="swapValues" type="button" class="inlineLeft marginRight" value="Swap" style="width:80px;">
- <div class="inlineLeft marginRight">
- <input type="text" value="94.62" id="endVal" style="width:80px" class="updateCodeVis">
- <label class="inlineLabel">End</label>
- </div>
- <div class="inlineLeft marginRight">
- <input type="number" value="0" id="decimalPlaces" step="1" style="width:50px" class="updateCodeVis">
- <label class="inlineLabel">Decimal places</label>
- </div>
- <div class="inlineLeft marginRight">
- <input type="number" value="2" id="duration" step=".1" style="width:50px" class="updateCodeVis">
- <label class="inlineLabel">Duration</label>
- </div>
- </form>
- </section>
- <section>
- <form>
- <h4 class="inlineLeft noMargin weight300">Options:</h4>
- <div class="inlineLeft marginLeft marginRight">
- <input id="useEasing" type="checkbox" checked><label class="inlineLabel updateCodeVis">Use easing</label>
- </div>
- <div class="inlineLeft marginRight">
- <input id="useGrouping" type="checkbox" checked><label class="inlineLabel updateCodeVis">Use grouping</label>
- </div>
- <div class="inlineLeft marginRight">
- <input id="useIndianSeparators" type="checkbox"><label class="inlineLabel updateCodeVis">Use Indian separators</label>
- </div>
- <div class="inlineLeft marginRight">
- <input type="text" value="," id="separator" style="width:25px; padding:0 5px;" class="updateCodeVis">
- <label class="inlineLabel">Separator</label>
- </div>
- <div class="inlineLeft marginRight">
- <input type="text" value="." id="decimal" style="width:25px; padding:0 5px;" class="updateCodeVis">
- <label class="inlineLabel">Decimal</label>
- </div>
- <div class="inlineLeft marginRight">
- <input type="text" value="" id="prefix" style="width:50px; padding:0 5px;" class="updateCodeVis">
- <label class="inlineLabel">Prefix</label>
- </div>
- <div class="inlineLeft marginRight">
- <input type="text" value="" id="suffix" style="width:50px; padding:0 5px;" class="updateCodeVis">
- <label class="inlineLabel">Suffix</label>
- </div>
- </form>
- </section>
- <section>
- <form>
- <h4 class="inlineLeft noMargin weight300">Methods:</h4>
- <input type="button" value="Start" id="start" class="inlineLeft marginLeft marginRight">
- <input type="button" value="Pause/Resume" id="pauseResume" class="inlineLeft marginRight">
- <input type="button" value="Reset" id="reset" class="inlineLeft marginRight">
- <input type="button" value="Update:" id="update" class="inlineLeft" style="margin-right:5px">
- <div class="inlineLeft marginRight">
- <input type="text" value="6789" id="updateVal" style="width:80px">
- </div>
- <div class="inlineLeft">
- <input type="checkbox" id="useOnComplete" class="updateCodeVis"><label class="inlineLabel">Alert on complete</label>
- </div>
- </form>
- </section>
- <section id="easingSection">
- <form>
- <h4 class="inlineLeft noMargin weight300">Custom:</h4>
- <div class="inlineLeft marginLeft">
- <label class="inlineLabel">Easing: </label>
- <select id="easingFnsDropdown" class="marginRight updateCodeVis">
- <option value="easeOutExpo" selected>easeOutExpo (default, built-in)</option>
- <option value="outQuintic">outQuintic</option>
- <option value="outCubic">outCubic</option>
- </select>
- </div>
- <div class="inlineLeft marginRight">
- <label class="inlineLabel">Numerals: </label>
- <select id="numeralsDropdown" class="updateCodeVis">
- <option value="" selected>Default ("1234")</option>
- <option value="ea">Eastern Arabic ("١٢٣٤")</option>
- <option value="fa">Farsi ("۱۲۳۴")</option>
- </select>
- </div>
- <div class="inlineLeft">
- <input type="button" id="apply" value="Apply">
- </div>
- </form>
- </section>
- <section class="marginBottom">
- <div class="col full marginBottom marginTop">
- <div class="code-contain indigo">
- <code id="codeVisualizer" class="indigo"></code>
- </div>
- </div>
- </section>
- </div>
- </body>
- </html>
|