UNPKG

@patternslib/patternslib

Version:

Patternslib is a JavaScript library that enables designers to build rich interactive prototypes without the need for writing any Javascript. All events are triggered by classes and other attributes in the HTML, without abusing the HTML as a programming la

29 lines (27 loc) 1.02 kB
<!doctype html> <html> <head> <meta charset="UTF-8" /> <script src="/bundle.min.js"></script> <title>Infinite scrolling</title> </head> <body> <form class="pat-checklist"> <label><input type="checkbox" class="toggle-all" />Toggle checkboxes</label ><br /> <fieldset id="infinite-boxes"> <label><input type="checkbox" checked="checked" /> Option one</label ><br /> <label><input type="checkbox" /> Option two</label><br /> <label><input type="checkbox" /> Option three</label><br /> <label><input type="checkbox" /> Option four</label><br /> <a href="./index-infinite.html#infinite-boxes" class="pat-inject" data-pat-inject="trigger: autoload-visible; target:self::element" >Loading...</a > </fieldset> </form> </body> </html>