Difference between revisions of "MediaWiki:Gadget-site.js"
Line 7: | Line 7: | ||
// | // | ||
− | + | function buildTianqi(placename, skycon, temp) { | |
+ | return "<link href='https://fonts.googleapis.com/css?family=Roboto:400,300' rel='stylesheet' type='text/css'><div class='card'><span class='city'>" + placename + "</span> <br> <div class='" + skycon + "'> </div> <span class='temp'>" + temp + "°C</span> <span> <ul class='variations'><li>" + skycon + "</li></ul> </span> </div>"; | ||
+ | } | ||
var latlng = $('.tianqi').text(); | var latlng = $('.tianqi').text(); | ||
Line 20: | Line 22: | ||
"dataType": "jsonp", | "dataType": "jsonp", | ||
"data": { | "data": { | ||
− | " | + | "getplacename": true, |
− | |||
}, | }, | ||
"success": function( response ) { | "success": function( response ) { |
Revision as of 03:04, 30 August 2018
// _________________________________________________________________________________________
// | |
// | === WARNING: GLOBAL GADGET FILE === |
// | Changes to this page affect many users. |
// | Please discuss changes on the talk page or on [[Wikipedia_talk:Gadget]] before editing. |
// |_________________________________________________________________________________________|
//
function buildTianqi(placename, skycon, temp) {
return "<link href='https://fonts.googleapis.com/css?family=Roboto:400,300' rel='stylesheet' type='text/css'><div class='card'><span class='city'>" + placename + "</span> <br> <div class='" + skycon + "'> </div> <span class='temp'>" + temp + "°C</span> <span> <ul class='variations'><li>" + skycon + "</li></ul> </span> </div>";
}
var latlng = $('.tianqi').text();
var pair = latlng.split(',');
var lat = pair[0], lng = pair[1];
var url = 'https://api.caiyunapp.com/v2/5AoOwKgLgmqmy=2i/' + lng + ',' + lat + '/forecast.jsonp';
$.ajax({
"url": url,
"jsonp": "callback",
"dataType": "jsonp",
"data": {
"getplacename": true,
},
"success": function( response ) {
console.log( response );
}
});
$('.tianqi').html(tianqi);