Git Product home page Git Product logo

Comments (5)

sadanandpai avatar sadanandpai commented on August 22, 2024

Assigned. Repo is no more a part of Hacktoberfest

from frontend-mini-challenges.

BrightTNut avatar BrightTNut commented on August 22, 2024

hi i have already this temp converter project in my repo you , also i proved code also

from frontend-mini-challenges.

BrightTNut avatar BrightTNut commented on August 22, 2024

url of my temp converter repo : [https://github.com/BrightTNut/tem-converter]

from frontend-mini-challenges.

BrightTNut avatar BrightTNut commented on August 22, 2024

`

<title>TEMPERTURE CONVERTER</title> <style> body{padding: 50px 100px;} h1{text-align: center;} #container{text-align: center;background-color:rgb(123, 235, 123);padding: 75px;} .input{display: inline-block;font-size: 20px;} .inp{border: 2px solid grey;padding: 5px 10px;margin: 10px; font-size: 30px;width: 250px;text-align: center;border-radius: 10px;display: inline-block;} </style>

Tepmerture converture

Celsius
Farenheit
Kelvin
<script> var cel = document.getElementById("cel"); var far = document.getElementById("far"); var kel = document.getElementById("kel"); cel.addEventListener('input',function(){ let c = this.value; let f = (c * 9/5) + 32 ; let k = c-273.15 +273.15+273.15 ; if(!Number.isInteger(f)){ f = f.toFixed(4); } kel.value=k; far.value=f; }) far.addEventListener('input',function(){ let f = this.value; let c = (f - 32)* 5/9; let k = (f - 32) * 5/9 + 273.15 ; if(!Number.isInteger(c)){ c = c.toFixed(4); } kel.value=k; cel.value=c; })

kel.addEventListener('input',function(){
let k = this.value;
let c = k - 273.15;
let f = (k - 273.15) * 9/5 + 32;
if(!Number.isInteger(k)){
k = k.toFixed(4);}
cel.value=c;
far.value=f;
})
</script>

`

from frontend-mini-challenges.

Kedarnath-Rothe avatar Kedarnath-Rothe commented on August 22, 2024

Please assign me this issue

from frontend-mini-challenges.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.