├── .gitattributes ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE.md ├── Overview.bs ├── README.md ├── Use cases.md ├── deploy_key.enc ├── img ├── usecase1-1.svg ├── usecase1-2.svg ├── usecase2.svg ├── usecase3-1.svg ├── usecase3-2.svg └── usecase4.svg ├── index.html ├── install-bikeshed.sh ├── travis.sh ├── w3c.json └── web-animations.css /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/scroll-animations/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | Overview.html 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/scroll-animations/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/scroll-animations/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/scroll-animations/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Overview.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/scroll-animations/HEAD/Overview.bs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/scroll-animations/HEAD/README.md -------------------------------------------------------------------------------- /Use cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/scroll-animations/HEAD/Use cases.md -------------------------------------------------------------------------------- /deploy_key.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/scroll-animations/HEAD/deploy_key.enc -------------------------------------------------------------------------------- /img/usecase1-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/scroll-animations/HEAD/img/usecase1-1.svg -------------------------------------------------------------------------------- /img/usecase1-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/scroll-animations/HEAD/img/usecase1-2.svg -------------------------------------------------------------------------------- /img/usecase2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/scroll-animations/HEAD/img/usecase2.svg -------------------------------------------------------------------------------- /img/usecase3-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/scroll-animations/HEAD/img/usecase3-1.svg -------------------------------------------------------------------------------- /img/usecase3-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/scroll-animations/HEAD/img/usecase3-2.svg -------------------------------------------------------------------------------- /img/usecase4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/scroll-animations/HEAD/img/usecase4.svg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/scroll-animations/HEAD/index.html -------------------------------------------------------------------------------- /install-bikeshed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/scroll-animations/HEAD/install-bikeshed.sh -------------------------------------------------------------------------------- /travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/scroll-animations/HEAD/travis.sh -------------------------------------------------------------------------------- /w3c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/scroll-animations/HEAD/w3c.json -------------------------------------------------------------------------------- /web-animations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/scroll-animations/HEAD/web-animations.css --------------------------------------------------------------------------------