├── 01-Animated-Universe ├── index.html ├── index.js └── styles.css ├── 02-Progress-Steps ├── index.html ├── script.js └── style.css ├── 03-Animated-Text ├── index.html ├── script.js └── style.css ├── 04-Expanding-Projects ├── index.html ├── script.js └── style.css ├── 05-Rotating-Navigation ├── hidden-search │ ├── index.html │ ├── script.js │ └── style.css ├── index.html ├── script.js └── style.css ├── 06-Hidden-Search ├── index.html ├── script.js └── style.css ├── README.md └── _project_starter_ ├── index.html ├── script.js └── style.css /01-Animated-Universe/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rashedin/63-Vanilla-JS-Projects/HEAD/01-Animated-Universe/index.html -------------------------------------------------------------------------------- /01-Animated-Universe/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rashedin/63-Vanilla-JS-Projects/HEAD/01-Animated-Universe/index.js -------------------------------------------------------------------------------- /01-Animated-Universe/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rashedin/63-Vanilla-JS-Projects/HEAD/01-Animated-Universe/styles.css -------------------------------------------------------------------------------- /02-Progress-Steps/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rashedin/63-Vanilla-JS-Projects/HEAD/02-Progress-Steps/index.html -------------------------------------------------------------------------------- /02-Progress-Steps/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rashedin/63-Vanilla-JS-Projects/HEAD/02-Progress-Steps/script.js -------------------------------------------------------------------------------- /02-Progress-Steps/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rashedin/63-Vanilla-JS-Projects/HEAD/02-Progress-Steps/style.css -------------------------------------------------------------------------------- /03-Animated-Text/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rashedin/63-Vanilla-JS-Projects/HEAD/03-Animated-Text/index.html -------------------------------------------------------------------------------- /03-Animated-Text/script.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /03-Animated-Text/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rashedin/63-Vanilla-JS-Projects/HEAD/03-Animated-Text/style.css -------------------------------------------------------------------------------- /04-Expanding-Projects/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rashedin/63-Vanilla-JS-Projects/HEAD/04-Expanding-Projects/index.html -------------------------------------------------------------------------------- /04-Expanding-Projects/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rashedin/63-Vanilla-JS-Projects/HEAD/04-Expanding-Projects/script.js -------------------------------------------------------------------------------- /04-Expanding-Projects/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rashedin/63-Vanilla-JS-Projects/HEAD/04-Expanding-Projects/style.css -------------------------------------------------------------------------------- /05-Rotating-Navigation/hidden-search/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rashedin/63-Vanilla-JS-Projects/HEAD/05-Rotating-Navigation/hidden-search/index.html -------------------------------------------------------------------------------- /05-Rotating-Navigation/hidden-search/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rashedin/63-Vanilla-JS-Projects/HEAD/05-Rotating-Navigation/hidden-search/script.js -------------------------------------------------------------------------------- /05-Rotating-Navigation/hidden-search/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rashedin/63-Vanilla-JS-Projects/HEAD/05-Rotating-Navigation/hidden-search/style.css -------------------------------------------------------------------------------- /05-Rotating-Navigation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rashedin/63-Vanilla-JS-Projects/HEAD/05-Rotating-Navigation/index.html -------------------------------------------------------------------------------- /05-Rotating-Navigation/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rashedin/63-Vanilla-JS-Projects/HEAD/05-Rotating-Navigation/script.js -------------------------------------------------------------------------------- /05-Rotating-Navigation/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rashedin/63-Vanilla-JS-Projects/HEAD/05-Rotating-Navigation/style.css -------------------------------------------------------------------------------- /06-Hidden-Search/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rashedin/63-Vanilla-JS-Projects/HEAD/06-Hidden-Search/index.html -------------------------------------------------------------------------------- /06-Hidden-Search/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rashedin/63-Vanilla-JS-Projects/HEAD/06-Hidden-Search/script.js -------------------------------------------------------------------------------- /06-Hidden-Search/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rashedin/63-Vanilla-JS-Projects/HEAD/06-Hidden-Search/style.css -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rashedin/63-Vanilla-JS-Projects/HEAD/README.md -------------------------------------------------------------------------------- /_project_starter_/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rashedin/63-Vanilla-JS-Projects/HEAD/_project_starter_/index.html -------------------------------------------------------------------------------- /_project_starter_/script.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /_project_starter_/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rashedin/63-Vanilla-JS-Projects/HEAD/_project_starter_/style.css --------------------------------------------------------------------------------