Difference between revisions of "MediaWiki:Gadget-site.js"

From Caiyun Wiki
Jump to: navigation, search
 
(24 intermediate revisions by the same user not shown)
Line 6: Line 6:
 
// |_________________________________________________________________________________________|
 
// |_________________________________________________________________________________________|
 
//
 
//
 
var tianqi = "<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='sun'> </div> <span class='temp'>${temp}&#176;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": {
 
        "q": "",
 
        "format": "json"
 
    },
 
    "success": function( response ) {
 
        console.log( response );
 
    }
 
});
 
 
$('.tianqi').html(tianqi);
 

Latest revision as of 08:44, 23 January 2019

//  _________________________________________________________________________________________
// |                                                                                         |
// |                    === 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. |
// |_________________________________________________________________________________________|
//