1

我有一个小功能:

function weather(){
$.getJSON("http://api.openweathermap.org/data/2.5/forecast/city?id=6551933&units=metric&lang=de&APPID=4649XXXXXXXXXXXXXXXX5b96",function(result){
    $("#header .inside").append("<div id='weather'><div class='temp' style='background-image:url(/files/images/weather/" + result.list[0].weather[0].icon + ".png);'>" + Math.round(result.list[0].main.temp) + "°</div><div class='wind'>" + Math.round(result.list[0].wind.speed * 3.6) + "km/h</div></div>");
    console.log("Weathericon: " + result.list[0].weather[0].icon);
    console.log("Temperature: " + result.list[0].main.temp);
    console.log("Wind: " + (result.list[0].wind.speed * 3.6) + " km/h");
});
}

这完美地工作。只有一件事:当下午 4 点时,图标集进入夜间。这应该发生在日落。并在日出时再次更换。

有想法的人吗?:) 谢谢!

4

0 回答 0