MediaWiki:Gadget-UTCLiveClock.js: Perbedaan antara revisi
Tampilan
Konten dihapus Konten ditambahkan
kTidak ada ringkasan suntingan |
Tidak ada ringkasan suntingan |
||
(2 revisi perantara oleh satu pengguna lainnya tidak ditampilkan) | |||
Baris 1: | Baris 1: | ||
mw.loader.load('//www.mediawiki.org/w/index.php?title=MediaWiki:Gadget-UTCLiveClock.js&action=raw&ctype=text/javascript'); |
|||
function liveClock() |
|||
{ |
|||
liveClock.node = mw.util.addPortletLink( 'p-personal', |
|||
mw.config.get('wgServer') |
|||
+ mw.config.get('wgScriptPath') |
|||
+ '/index.php?title=' |
|||
+ mw.config.get('wgPageName') |
|||
+ '&action=purge', '', 'utcdate' )[0]; |
|||
// liveClock.node.style.fontSize = 'larger'; |
|||
liveClock.node.style.fontWeight = 'bolder'; |
|||
showTime(); |
|||
} |
|||
$(liveClock); |
|||
function showTime() |
|||
{ |
|||
var now = new Date(); |
|||
var hh = now.getUTCHours(); |
|||
var mm = now.getUTCMinutes(); |
|||
var ss = now.getUTCSeconds(); |
|||
var time = ( hh < 10 ? '0' + hh : hh ) + ':' + ( mm < 10 ? '0' + mm : mm ) + ':' + ( ss < 10 ? '0' + ss : ss ); |
|||
liveClock.node.firstChild.textContent = time; |
|||
window.setTimeout(showTime, 1000); |
|||
} |