├── .gitignore ├── LICENSE ├── README.md ├── images ├── chris-ask-again.png ├── chris-ask.png ├── grumpycat.jpg ├── leftshark-flames.gif ├── leftshark.gif ├── optimized-turtle.svg └── turtle-ai-work.ai └── starter-localhost ├── css ├── normalize.css └── style.css ├── index.html └── js ├── TweenMax.min.js ├── index.js └── vue.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/livecode-svganimation/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/livecode-svganimation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/livecode-svganimation/HEAD/README.md -------------------------------------------------------------------------------- /images/chris-ask-again.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/livecode-svganimation/HEAD/images/chris-ask-again.png -------------------------------------------------------------------------------- /images/chris-ask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/livecode-svganimation/HEAD/images/chris-ask.png -------------------------------------------------------------------------------- /images/grumpycat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/livecode-svganimation/HEAD/images/grumpycat.jpg -------------------------------------------------------------------------------- /images/leftshark-flames.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/livecode-svganimation/HEAD/images/leftshark-flames.gif -------------------------------------------------------------------------------- /images/leftshark.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/livecode-svganimation/HEAD/images/leftshark.gif -------------------------------------------------------------------------------- /images/optimized-turtle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/livecode-svganimation/HEAD/images/optimized-turtle.svg -------------------------------------------------------------------------------- /images/turtle-ai-work.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/livecode-svganimation/HEAD/images/turtle-ai-work.ai -------------------------------------------------------------------------------- /starter-localhost/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/livecode-svganimation/HEAD/starter-localhost/css/normalize.css -------------------------------------------------------------------------------- /starter-localhost/css/style.css: -------------------------------------------------------------------------------- 1 | /* livecoded styles go here */ 2 | -------------------------------------------------------------------------------- /starter-localhost/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/livecode-svganimation/HEAD/starter-localhost/index.html -------------------------------------------------------------------------------- /starter-localhost/js/TweenMax.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/livecode-svganimation/HEAD/starter-localhost/js/TweenMax.min.js -------------------------------------------------------------------------------- /starter-localhost/js/index.js: -------------------------------------------------------------------------------- 1 | /* live code js goes here */ 2 | -------------------------------------------------------------------------------- /starter-localhost/js/vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/livecode-svganimation/HEAD/starter-localhost/js/vue.js --------------------------------------------------------------------------------