我从Weather Underground获取了一些API信息,并想知道是否可以使用API提供的信息通过jQuery更改整个body
的背景颜色。
我想要做的是根据通过API返回的特定温度范围在body
标记上设置一个类。例如:
"current_observation": {
"image": {
"url":"http://icons-ak.wxug.com/graphics/wu2/logo_130x80.png",
"title":"Weather Underground",
"link":"http://www.wunderground.com"
},
"display_location": {
"full":"Bowling Green, KY",
"city":"Bowling Green",
"state":"KY",
"state_name":"Kentucky",
"country":"US",
"country_iso3166":"US",
"zip":"42101",
"latitude":"37.02899933",
"longitude":"-86.46366119",
"elevation":"154.00000000"
},
"observation_location": {
"full":"Ridgeview Drive, Bowling Green, Kentucky",
"city":"Ridgeview Drive, Bowling Green",
"state":"Kentucky",
"country":"US",
"country_iso3166":"US",
"latitude":"36.993744",
"longitude":"-86.522827",
"elevation":"714 ft"
},
"estimated": {
},
"station_id":"KKYBOWLI7",
"observation_time":"Last Updated on May 24, 2:25 PM CDT",
"observation_time_rfc822":"Thu, 24 May 2012 14:25:18 -0500",
"observation_epoch":"1337887518",
"local_time_rfc822":"Thu, 24 May 2012 14:25:29 -0500",
"local_epoch":"1337887529",
"local_tz_short":"CDT",
"local_tz_long":"America/Chicago",
"local_tz_offset":"-0500",
"weather":"Clear",
"temperature_string":"86.8 F (30.4 C)",
"temp_f":86.8
这是我要介绍的一些信息。最后一个temp_f
是我想要关注的内容。
范围的示例是 - 80到90应显示background:#dd7f35
我试图为此设置自定义变量,但总是会破坏事物。我似乎无法弄清楚如何使用从JSON中提取的信息来设置变量(如果temp_f
使用小数,那么甚至可以这样做。)
以下是我如何调用JSON
$().ready(function(){
$.getJSON("http://api.wunderground.com/api/[MY API KEY]/conditions/q/autoip.json?callback=?",
function(data){
$.each(data, function(i, json) {
content = '<h1>' + json.icon + '</h1>';
content += '<img src=' + json.icon_url +'>';
content += '<p>' + json.temp_f + '<p>';
$(content).appendTo("#area");
});
console.log(data)
});
});
这是我尝试过的东西
var backDrop = ' + json.temp_f + '
我使用了+ json.temp_f +
,因为这对普通HTML来说很好,但是我可以假设在这种情况下它不会起作用吗?
非常感谢任何帮助。
答案 0 :(得分:2)
var backDrop = json.temp_f;
摆脱引号和优点。
或者你可以这样做:
var colorOutput = '';
if(json.temp_f < 20){
colorOutput = 'blue'; //use hex color
}else if(json.temp_f >=20 && json.temp_f < 60){
colorOutput = 'orange'; //use hex color
}
$('#colorMeElement').css('background',colorOutput);
答案 1 :(得分:1)
为每个范围 - 颜色组合设置CSS样式,例如具有背景的.range_80_90:#dd7f35。然后,您可以在脚本中动态创建类,并将其应用于相应的元素。