├── .gitattributes
├── README.md
├── atvImg-min.js
├── atvImg.css
├── atvImg.js
└── package.json
/.gitattributes:
--------------------------------------------------------------------------------
1 | * text=auto
2 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # atvImg
2 |
3 | `atvImg` = 'AppleTV Image'
4 |
5 | Made by http://drewwilson.com
6 |
7 | ---
8 |
9 | This lightweight (2kb) plug-in will automatically turn your layered Apple TV PNGs into
10 | 3D parallax icons, the same way the new Apple TV treats app icons.
11 | You can have any number of AppleTV Images on your web page.
12 |
13 | No dependencies, this plugin is just plain ol' vanilla javascript. Works on all
14 | major browsers. It even supports touch and mobile.
15 |
16 |
17 |
18 | A live example of this plug-in can bee seen here: http://kloc.pm
19 |
20 | Here is a video explaining how it works: http://d.pr/v/18YXv
21 |
22 | Here is a video showing off the touch/mobile support: http://d.pr/v/1k2Ju
23 |
24 | -------------------
25 |
26 | Here is how to setup the HTML for a single `atvImg`:
27 | ```html
28 |