Summary
Keywords
Full Transcript
Curso de JavaScript, Web, JS, Aplicações com JavaScript, Conversor de Temperaturas, Celsius, Fahrenheit, Kelvin, querySelector, value, parseFloat, converter Celsius para Fahrenheite, Converter Celsius para Kelvin, input, range, number, input type range, min, max, evento, onChange, animação com CSS3, pulsar, Programação, Dev, HTML, Informática, Edson Maia html da aula 18 https://drive.google.com/file/d/1fwlUUBCR_Ryw3DxxhV7FIAHoUmQzzQRi/view?usp=sharing css da aula 18 https://drive.google.com/file/d/1CguMcPmUTaMbQogU34Kq50AJevdvzJiy/view?usp=sharing js da aula 18 https://drive.google.com/file/d/1RpNH6fiMCbqNW0ssiZU88fEyzoeyw511/view?usp=sharing FÓRMULAS celsius_fahrenheit = (celsius * 9/5) + 32 celsius_kelvin = celsius + 273.15 fahrenheit_celsius = (fahrenheit - 32) * 5/9 fahrenheit_kelvin = (fahrenheit - 32) * 5/9 + 273.15 kelvin_celsius = kelvin - 273.15 kelvin_fahrenheit = (kelvin - 273.15) * 9/5 + 32 links extras: https://www.infoescola.com/fisica/conversao-de-escalas-termometricas/ https://developer.mozilla.org/pt-BR/docs/Web/HTML/Element/Input/range https://css-tricks.com/styling-cross-browser-compatible-range-inputs-css/ cssportal.com/style-input-range/
