User:NigelSoft-Library/Scripts/CSTLiveClock.js

维基百科,自由的百科全书

注意:保存之后,你必须清除浏览器缓存才能看到做出的更改。Google ChromeFirefoxMicrosoft EdgeSafari:按住⇧ Shift键并单击工具栏的“刷新”按钮。参阅Help:绕过浏览器缓存以获取更多帮助。

( function( $, undefined ) {

function showTime( $target ) {
	var dateNode = CSTLiveClockConfig.node;
	if( !dateNode ) {
		return;
	}

	var now = new Date();
	var hh = now.getUTCHours() + 8 > 23 ? now.getUTCHours() + 8 - 24 : now.getUTCHours() + 8;
	var mm = now.getUTCMinutes();
	var ss = now.getUTCSeconds();
	if ( typeof $target === 'undefined' ) {
		$target = $( dateNode ).find( 'a:first' );
	}
	var time = ( hh < 10 ? '0' + hh : hh ) + ':' + ( mm < 10 ? '0' + mm : mm ) + ':' + ( ss < 10 ? '0' + ss : ss );
	$target.text( time );

	setTimeout( function(){
		showTime( $target );	
	}, 1000 );
}

function liveClock() {
	appendCSS( '#utcdate a { font-weight:bolder; font-size:120%; }' );

	if ( typeof( CSTLiveClockConfig ) === 'undefined' ) {
		window.CSTLiveClockConfig = {};
	}
	var portletId = CSTLiveClockConfig.portletId || 'p-personal';
	var nextNode = CSTLiveClockConfig.nextNodeId ? document.getElementById( CSTLiveClockConfig.nextNodeId ) : undefined;
	CSTLiveClockConfig.node = mw.util.addPortletLink(
		portletId,
		wgScript + '?title=' + encodeURIComponent( wgPageName ) + '&action=purge',
		'',
		'utcdate',
		undefined,
		undefined,
		nextNode
	);
	if( !CSTLiveClockConfig.node ) {
		return;
	}

	showTime();
}
$( document ).ready( liveClock );

} )( jQuery );