我正在为学校项目制作天气应用。
要获取天气图标,我现在有以下代码:
function getWeather (city){
$.get("http://api.openweathermap.org/data/2.5/weather?q="+city+"&appid=50bc264b6f0b99a1cfe346238e1e9383", {}, function(data){
var iconCode = data.weather[0].icon;
var iconurl = "http://openweathermap.org/img/w/" + iconCode + ".png";
TweenLite.from("#weer" , 4 , {X: -360} );
$("#desc").html('Sky: ' + data.weather[0].description);
$("#temp ").html(data.main.temp + ' °F');
$("#wind").html(data.wind.speed + ' KM/H');
$("#stad").html(data.name);
$("#icon").html("<img src='" + iconurl + "' alt='Icon depicting current weather'>");
TweenMax.from("#weather" , 2 , {x: -1000} );
})
}
现在,我想对其进行更改,以从PC上的项目文件夹中获取图标,而不是从URL中获取图标。 有关如何执行此操作的任何建议?