This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Parameter English Your language | |
200 thunderstorm with light rain 가벼운 비를 동반한 천둥구름 | |
201 thunderstorm with rain 비를 동반한 천둥구름 | |
202 thunderstorm with heavy rain 폭우를 동반한 천둥구름 | |
210 light thunderstorm 약한 천둥구름 | |
211 thunderstorm 천둥구름 | |
212 heavy thunderstorm 강한 천둥구름 | |
221 ragged thunderstorm 불규칙적 천둥구름 | |
230 thunderstorm with light drizzle 약한 연무를 동반한 천둥구름 | |
231 thunderstorm with drizzle 연무를 동반한 천둥구름 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery.fn.center = function () { | |
this.css("position","absolute"); | |
this.css("top", ( $(window).height() - this.height() ) / 2+$(window).scrollTop() + "px"); | |
this.css("left", ( $(window).width() - this.width() ) / 2+$(window).scrollLeft() + "px"); | |
return this; | |
} | |
$(element).center(); |