├── 00-imc
├── imc.js
├── index.html
├── readme.md
└── style.css
├── 01-Solução lamp
├── img
│ ├── desligada.jpg
│ ├── ligada.jpg
│ └── quebrada.jpg
├── index.html
├── lampada.js
├── readme.md
└── style.css
├── 01-lamp
├── img
│ ├── desligada.jpg
│ ├── ligada.jpg
│ └── quebrada.jpg
├── index.html
├── lampada.js
├── readme.md
└── style.css
├── 02-semaforo
├── img
│ ├── amarelo.png
│ ├── desligado.png
│ ├── verde.png
│ └── vermelho.png
├── index.html
├── semaforo.js
└── style.css
├── 03-slideshow
├── img
│ ├── chrono.jpg
│ ├── inuyasha.jpg
│ ├── ippo.png
│ ├── tenchi.jpg
│ ├── tenjhotenge.jpg
│ └── yuyuhakusho.jpg
├── index.html
├── slideShow.js
└── style.css
├── 04-DRUM-KIT
├── DRUM-KIT.zip
├── img
│ └── back.jpg
├── index.html
├── index.js
├── sounds
│ ├── boom.wav
│ ├── clap.wav
│ ├── hihat.wav
│ ├── kick.wav
│ ├── openhat.wav
│ ├── ride.wav
│ ├── snare.wav
│ ├── tink.wav
│ └── tom.wav
└── style.css
├── 05-countdown
├── bg.jpg
├── index.html
├── main.js
└── style.css
├── 06-Calculadora
├── calculadora.js
├── index.html
└── style.css
├── 07-todo-List
├── app.js
├── index.html
└── style.css
├── 08-crud
├── css
│ ├── button.css
│ ├── main.css
│ ├── modal.css
│ └── records.css
├── index.html
└── main.js
├── 09-preview-imagem
├── img
│ └── upload-icon.svg
├── index.html
├── preview.js
└── style.css
├── README.md
└── img
├── 00-imc.gif
├── 01-lamp.gif
├── 02-semaforo.gif
├── 03-slideshow.gif
├── 04-DRUM-KIT.gif
├── 05-countdown.gif
├── 06-Calculadora.gif
├── 07-todo-List.gif
└── 08-crud.gif
/00-imc/imc.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/00-imc/imc.js
--------------------------------------------------------------------------------
/00-imc/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/00-imc/index.html
--------------------------------------------------------------------------------
/00-imc/readme.md:
--------------------------------------------------------------------------------
1 | # Calculadora IMC
2 |
--------------------------------------------------------------------------------
/00-imc/style.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/00-imc/style.css
--------------------------------------------------------------------------------
/01-Solução lamp/img/desligada.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/01-Solução lamp/img/desligada.jpg
--------------------------------------------------------------------------------
/01-Solução lamp/img/ligada.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/01-Solução lamp/img/ligada.jpg
--------------------------------------------------------------------------------
/01-Solução lamp/img/quebrada.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/01-Solução lamp/img/quebrada.jpg
--------------------------------------------------------------------------------
/01-Solução lamp/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/01-Solução lamp/index.html
--------------------------------------------------------------------------------
/01-Solução lamp/lampada.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/01-Solução lamp/lampada.js
--------------------------------------------------------------------------------
/01-Solução lamp/readme.md:
--------------------------------------------------------------------------------
1 | # Lâmpada JS
2 |
3 | Projeto em javascript para iniciar a interação com elementos HTML.
--------------------------------------------------------------------------------
/01-Solução lamp/style.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/01-Solução lamp/style.css
--------------------------------------------------------------------------------
/01-lamp/img/desligada.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/01-lamp/img/desligada.jpg
--------------------------------------------------------------------------------
/01-lamp/img/ligada.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/01-lamp/img/ligada.jpg
--------------------------------------------------------------------------------
/01-lamp/img/quebrada.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/01-lamp/img/quebrada.jpg
--------------------------------------------------------------------------------
/01-lamp/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/01-lamp/index.html
--------------------------------------------------------------------------------
/01-lamp/lampada.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/01-lamp/lampada.js
--------------------------------------------------------------------------------
/01-lamp/readme.md:
--------------------------------------------------------------------------------
1 | # Lâmpada JS
2 |
3 | Projeto em javascript para iniciar a interação com elementos HTML.
--------------------------------------------------------------------------------
/01-lamp/style.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/01-lamp/style.css
--------------------------------------------------------------------------------
/02-semaforo/img/amarelo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/02-semaforo/img/amarelo.png
--------------------------------------------------------------------------------
/02-semaforo/img/desligado.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/02-semaforo/img/desligado.png
--------------------------------------------------------------------------------
/02-semaforo/img/verde.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/02-semaforo/img/verde.png
--------------------------------------------------------------------------------
/02-semaforo/img/vermelho.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/02-semaforo/img/vermelho.png
--------------------------------------------------------------------------------
/02-semaforo/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/02-semaforo/index.html
--------------------------------------------------------------------------------
/02-semaforo/semaforo.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/02-semaforo/semaforo.js
--------------------------------------------------------------------------------
/02-semaforo/style.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/02-semaforo/style.css
--------------------------------------------------------------------------------
/03-slideshow/img/chrono.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/03-slideshow/img/chrono.jpg
--------------------------------------------------------------------------------
/03-slideshow/img/inuyasha.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/03-slideshow/img/inuyasha.jpg
--------------------------------------------------------------------------------
/03-slideshow/img/ippo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/03-slideshow/img/ippo.png
--------------------------------------------------------------------------------
/03-slideshow/img/tenchi.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/03-slideshow/img/tenchi.jpg
--------------------------------------------------------------------------------
/03-slideshow/img/tenjhotenge.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/03-slideshow/img/tenjhotenge.jpg
--------------------------------------------------------------------------------
/03-slideshow/img/yuyuhakusho.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/03-slideshow/img/yuyuhakusho.jpg
--------------------------------------------------------------------------------
/03-slideshow/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/03-slideshow/index.html
--------------------------------------------------------------------------------
/03-slideshow/slideShow.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/03-slideshow/slideShow.js
--------------------------------------------------------------------------------
/03-slideshow/style.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/03-slideshow/style.css
--------------------------------------------------------------------------------
/04-DRUM-KIT/DRUM-KIT.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/04-DRUM-KIT/DRUM-KIT.zip
--------------------------------------------------------------------------------
/04-DRUM-KIT/img/back.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/04-DRUM-KIT/img/back.jpg
--------------------------------------------------------------------------------
/04-DRUM-KIT/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/04-DRUM-KIT/index.html
--------------------------------------------------------------------------------
/04-DRUM-KIT/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/04-DRUM-KIT/index.js
--------------------------------------------------------------------------------
/04-DRUM-KIT/sounds/boom.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/04-DRUM-KIT/sounds/boom.wav
--------------------------------------------------------------------------------
/04-DRUM-KIT/sounds/clap.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/04-DRUM-KIT/sounds/clap.wav
--------------------------------------------------------------------------------
/04-DRUM-KIT/sounds/hihat.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/04-DRUM-KIT/sounds/hihat.wav
--------------------------------------------------------------------------------
/04-DRUM-KIT/sounds/kick.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/04-DRUM-KIT/sounds/kick.wav
--------------------------------------------------------------------------------
/04-DRUM-KIT/sounds/openhat.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/04-DRUM-KIT/sounds/openhat.wav
--------------------------------------------------------------------------------
/04-DRUM-KIT/sounds/ride.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/04-DRUM-KIT/sounds/ride.wav
--------------------------------------------------------------------------------
/04-DRUM-KIT/sounds/snare.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/04-DRUM-KIT/sounds/snare.wav
--------------------------------------------------------------------------------
/04-DRUM-KIT/sounds/tink.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/04-DRUM-KIT/sounds/tink.wav
--------------------------------------------------------------------------------
/04-DRUM-KIT/sounds/tom.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/04-DRUM-KIT/sounds/tom.wav
--------------------------------------------------------------------------------
/04-DRUM-KIT/style.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/04-DRUM-KIT/style.css
--------------------------------------------------------------------------------
/05-countdown/bg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/05-countdown/bg.jpg
--------------------------------------------------------------------------------
/05-countdown/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/05-countdown/index.html
--------------------------------------------------------------------------------
/05-countdown/main.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/05-countdown/main.js
--------------------------------------------------------------------------------
/05-countdown/style.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/05-countdown/style.css
--------------------------------------------------------------------------------
/06-Calculadora/calculadora.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/06-Calculadora/calculadora.js
--------------------------------------------------------------------------------
/06-Calculadora/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/06-Calculadora/index.html
--------------------------------------------------------------------------------
/06-Calculadora/style.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/06-Calculadora/style.css
--------------------------------------------------------------------------------
/07-todo-List/app.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/07-todo-List/app.js
--------------------------------------------------------------------------------
/07-todo-List/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/07-todo-List/index.html
--------------------------------------------------------------------------------
/07-todo-List/style.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/07-todo-List/style.css
--------------------------------------------------------------------------------
/08-crud/css/button.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/08-crud/css/button.css
--------------------------------------------------------------------------------
/08-crud/css/main.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/08-crud/css/main.css
--------------------------------------------------------------------------------
/08-crud/css/modal.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/08-crud/css/modal.css
--------------------------------------------------------------------------------
/08-crud/css/records.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/08-crud/css/records.css
--------------------------------------------------------------------------------
/08-crud/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/08-crud/index.html
--------------------------------------------------------------------------------
/08-crud/main.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/08-crud/main.js
--------------------------------------------------------------------------------
/09-preview-imagem/img/upload-icon.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/09-preview-imagem/img/upload-icon.svg
--------------------------------------------------------------------------------
/09-preview-imagem/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/09-preview-imagem/index.html
--------------------------------------------------------------------------------
/09-preview-imagem/preview.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/09-preview-imagem/preview.js
--------------------------------------------------------------------------------
/09-preview-imagem/style.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/09-preview-imagem/style.css
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/README.md
--------------------------------------------------------------------------------
/img/00-imc.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/img/00-imc.gif
--------------------------------------------------------------------------------
/img/01-lamp.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/img/01-lamp.gif
--------------------------------------------------------------------------------
/img/02-semaforo.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/img/02-semaforo.gif
--------------------------------------------------------------------------------
/img/03-slideshow.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/img/03-slideshow.gif
--------------------------------------------------------------------------------
/img/04-DRUM-KIT.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/img/04-DRUM-KIT.gif
--------------------------------------------------------------------------------
/img/05-countdown.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/img/05-countdown.gif
--------------------------------------------------------------------------------
/img/06-Calculadora.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/img/06-Calculadora.gif
--------------------------------------------------------------------------------
/img/07-todo-List.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/img/07-todo-List.gif
--------------------------------------------------------------------------------
/img/08-crud.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/fernandoleonid/mini-projetos-js/HEAD/img/08-crud.gif
--------------------------------------------------------------------------------