-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
29 lines (29 loc) · 1.22 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>SimpleOpenWeather plugin demo</title>
<style type="text/css">
.simpleopenweather {
background: #ccc;
width: 18em;
margin: 0.3em;
padding: 0.2em;
}
</style>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js"></script>
<script type="text/javascript" src="jquery.simpleopenweather.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#weather1").simpleopenweather({template: '<span>Temp: {{temperature}} ºC </span>', units: 'metric'});
$("#weather2").simpleopenweather({units: 'metric'});
$(".bulgaria").simpleopenweather({iconset: './iconset_demo/', units: 'metric'});
});
</script>
</head>
<body>
<div id="weather1" class="simpleopenweather" data-simpleopenweather-city="alcoy, alicante"></div>
<div id="weather2" class="simpleopenweather" data-simpleopenweather-coord="38.701052,-0.464172"></div>
<div id="weather3" class="simpleopenweather bulgaria" data-simpleopenweather-city="blagoevgrad"></div>
<div id="weather4" class="simpleopenweather bulgaria" data-simpleopenweather-city="sofia"></div>
</body>
</html>