⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 loading.js

📁 This is the script which used on 10minutemail.com for temporary email.
💻 JS
字号:
/** * Default loading implementation * * @category	HTML * @package	Ajax * @license	http://www.opensource.org/licenses/lgpl-license.php  LGPL * @copyright	2005 Joshua Eichorn * see Main.js for license Author details */HTML_AJAX.Open = function(request) {	var loading = document.getElementById('HTML_AJAX_LOADING');	if (!loading) {		loading = document.createElement('div');		loading.id = 'HTML_AJAX_LOADING';		loading.innerHTML = 'Please wait while loading...';				loading.style.color	 = '#fff';		loading.style.position  = 'absolute';		loading.style.top   = 0;		loading.style.right	 = 0;		loading.style.backgroundColor = '#f00';		loading.style.border		= '1px solid #f99';		loading.style.width		 = '80px';		loading.style.padding	   = '4px';		loading.style.fontFamily	= 'Arial, Helvetica, sans';		loading.count = 0;			document.body.insertBefore(loading,document.body.firstChild);	}	else {		if (loading.count == undefined) {			loading.count = 0;		}	}	loading.count++;	if (request.isAsync) {		request.loadingId = window.setTimeout(function() { loading.style.display = 'block'; },0);	}	else {		loading.style.display = 'block';	}}HTML_AJAX.Load = function(request) {	if (request.loadingId) {		window.clearTimeout(request.loadingId);	}	var loading = document.getElementById('HTML_AJAX_LOADING');	loading.count--;	if (loading.count == 0) {		loading.style.display = 'none';	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -