Weather
How do I make an weather?
What is a weather? How do you make a weather? This script and codes were developed by Yas on 05 January 2023, Thursday.
Weather - Script Codes HTML Codes
<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Weather</title> <link rel='stylesheet prefetch' href='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css'> <link rel="stylesheet" href="css/style.css">
</head>
<body> <div class="container"> <div class="row"> <div class="col-lg-12"> <div class="box" id="box"> <h3 class="location text-center">retriving location</h3> <canvas class="icon-set" id="clear-day" width="125" height="125" ></canvas> <canvas class="icon-set" id="clear-night" width="125" height="125" ></canvas> <canvas class="icon-set" id="partly-cloudy-day" width="125" height="125" ></canvas> <canvas class="icon-set" id="partly-cloudy-night" width="125" height="125" ></canvas> <canvas class="icon-set" id="cloudy" width="125" height="125"></canvas> <canvas class="icon-set" id="rain" width="125" height="125"></canvas> <canvas class="icon-set" id="sleet" width="125" height="125"></canvas> <canvas class="icon-set" id="snow" width="125" height="125"></canvas> <canvas class="icon-set" id="wind" width="125" height="125"></canvas> <canvas class="icon-set" id="fog" width="125" height="125"></canvas> <h2 class="weather">retriving weather</h2> <h2 class="temp">please wait</h2> <button type="button" class="btn btn-info btn-xs convert"></button> </div> </div> </div>
</div>
<script src="https://rawgithub.com/darkskyapp/skycons/master/skycons.js"></script> <script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.0/jquery.min.js'></script>
<script src='https://raw.githubusercontent.com/darkskyapp/skycons/master/skycons.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/js/bootstrap.min.js'></script> <script src="js/index.js"></script>
</body>
</html>
Weather - Script Codes CSS Codes
.container { background-color: #fff;
}
#clear-day, #clear-night, #partly-cloudy-day, #partly-cloudy-night, #cloudy, #rain, #sleet, #snow, #wind, #fog { display: none; float: left; padding: 0 30px 0 50px; }
.box { width: 480px; height: 220px; margin: 100px auto; background: #fff; padding: 2px;
}
h2 { margin-top: 20px;
}
.location { margin-top: 30px;
}
.weather { margin: 30px 0 10px 100px;
}
.temp { margin: -6px 0 0 0px; float: left;
}
.convert { float: left; margin: 0px 0 0 14px; outline: none;
}
.footer { position: absolute; right: 0; bottom: 0; left: 0; padding: .6rem; background-color: #efefef; text-align: center; font-family: 'Hind Guntur', sans-serif; font-size: 12px;
}
Weather - Script Codes JS Codes
//$(document).ready(function() { let lat; let lon; let currentWeather; let icon; let temperature; let currentDeg; let convertion; const FAR_SYMBOL = " ℉"; const CEL_SYMBOL = " ℃"; var icons = new Skycons({"color": "orange"}); icons.set("clear-day", Skycons.CLEAR_DAY); icons.set("clear-night", Skycons.CLEAR_NIGHT); icons.set("partly-cloudy-day", Skycons.PARTLY_CLOUDY_DAY); icons.set("partly-cloudy-night", Skycons.PARTLY_CLOUDY_NIGHT); icons.set("cloudy", Skycons.CLOUDY); icons.set("rain", Skycons.RAIN); icons.set("sleet", Skycons.SLEET); icons.set("snow", Skycons.SNOW); icons.set("wind", Skycons.WIND); icons.set("fog", Skycons.FOG); icons.play(); // Fahrenheit Celsius converter $('.convert').on('click', function() { switch (currentDeg) { case FAR_SYMBOL: temperature = Math.round((temperature - 32) / 1.8); $('.temp').html(temperature + CEL_SYMBOL); $('.convert').html("convert to " + FAR_SYMBOL); currentDeg = CEL_SYMBOL; break; case CEL_SYMBOL: temperature = Math.round(temperature * 1.8 + 32); $('.temp').html(temperature + FAR_SYMBOL); $('.convert').html("convert to " + CEL_SYMBOL); currentDeg = FAR_SYMBOL; break; default: alert("convertion error"); } }); // loads location var promiseGeo = $.ajax({ url: 'http://ip-api.com/json', dataType: 'json', type: 'get', cache: true, success: function(data) { $('.location').html(data.city + ", " + data.country); }, error: function(request, errorType, errorMessage) { alert('Error: ' + errorType + ' with message: ' + errorMessage)} }); // sets latitude & longitude after location loads then calls weather promiseGeo.then(function(data) { lat = data.lat; lon = data.lon; var promiseWeather = $.ajax({ url: 'https://crossorigin.me/https://api.darksky.net/forecast/2dcd24e9752b62bc9a56a9b510e20c13/' + lat + ',' + lon, dataType: 'json', type: 'get', cache: true, success: function(weather) { temperature = weather.currently.temperature; $('.icon-set').hide(); icon = weather.currently.icon; $('#'+ icon).show(); $('.weather').html(weather.currently.summary); $('.temp').html(Math.round(temperature) + FAR_SYMBOL); $('.convert').html("convert to " + CEL_SYMBOL); currentDeg = FAR_SYMBOL; }, error: function(request, errorType, errorMessage) { alert('Error: ' + errorType + ' with message: ' + errorMessage)} }); }); //sets temperature after wether is loaded promiseWeather.then(function(weather) { temperature = weather.currently.temperature; });
//});

Developer | Yas |
Username | Yas46 |
Uploaded | January 05, 2023 |
Rating | 3 |
Size | 3,186 Kb |
Views | 8,092 |
Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!
Name | Size |
A Pen by Yas | 4,042 Kb |
Tic-tac-toe React | 3,512 Kb |
Pomodoro Clock | 3,328 Kb |
Quote Machine | 3,625 Kb |
Browser Calculator | 2,846 Kb |
Tic-tac-toe | 3,730 Kb |
Wikipedia Search | 2,746 Kb |
TicTacToe | 1,674 Kb |
Twitch Streamers | 2,772 Kb |
Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!
Name | Username | Size |
React TODO | Enieste | 3,320 Kb |
SVG Hover Animations | Kjbrum | 10,557 Kb |
About Mazano | Kiti | 2,585 Kb |
Pictos font library from CodePen | Jstam | 3,790 Kb |
Zip Button test | Lje7462 | 1,932 Kb |
Scroll Arrow | Robooneus | 4,437 Kb |
Nested table email layout | Massimo-cassandro | 2,355 Kb |
Collapsing Widget | Er40 | 4,279 Kb |
Google Chrome Icon using Pure CSS in one DIV | Grssam | 3,627 Kb |
TweetBox with React JS | J0zelito | 3,325 Kb |
Surf anonymously, prevent hackers from acquiring your IP address, send anonymous email, and encrypt your Internet connection. High speed, ultra secure, and easy to use. Instant setup. Hide Your IP Now!