├── .gitignore ├── CHANGES.txt ├── test ├── index.html └── basic.html ├── index.html ├── bower.json ├── demo ├── tiles │ ├── index.html │ ├── squares-page.html │ └── circles-page.html ├── index.html └── declarative │ └── index.html ├── README.md └── lazy-pages.html /.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /CHANGES.txt: -------------------------------------------------------------------------------- 1 | 0.8.6 2 | ============== 3 | 4 | 0.8.5 5 | ============== 6 | - Removed on-demand element definition loading inside template. It did not work in IE. 7 | 8 | 0.8.4 9 | ============== 10 | - added `lazy-pages-transition-ready` event if you need to interact with page before it is shown 11 | - debounce rescueSelection to prevent infinite loops 12 | - timeout transition.startAnimation from dom-change, makes animations better for lazily loaded 13 | 14 | 0.8.3 15 | ============== 16 | - bugfix: attrForSelected was not working 17 | - iron-pages compatibility: added selectedItem 18 | - feature: rescueSelection: selection to use if last one was bad 19 | 20 | 0.8.2 21 | ============== 22 | - fix for http://stackoverflow.com/questions/32639639/ios-9-mobile-safari-has-a-blinking-bug-with-transform-scale3d-and-translate3d 23 | ios animation janky 24 | -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 |
14 | 15 | 16 |This is a very bare demo. Additional, more colorful demos are declarative, or tiles. 61 | You can compare them to original neon-animated-pages here
62 |select a page number to see them animate63 |
lazy-pages71 |
Page One is inside a dom-if
75 |