Khác biệt giữa các bản “MediaWiki:Common.js”

Từ ChipFC Wiki
Bước tới: chuyển hướng, tìm kiếm
(Tạo trang mới với nội dung “Bất kỳ mã JavaScript ở đây sẽ được tải cho tất cả các thành viên khi tải một trang nào đó lên.: jQuery(document).on(…”)
 
 
Dòng 1: Dòng 1:
 
/* Bất kỳ mã JavaScript ở đây sẽ được tải cho tất cả các thành viên khi tải một trang nào đó lên. */
 
/* Bất kỳ mã JavaScript ở đây sẽ được tải cho tất cả các thành viên khi tải một trang nào đó lên. */
  
 +
/*Hoa bay ngày Tết*/
 +
/*
 
jQuery(document).on('mousemove', function(e) {
 
jQuery(document).on('mousemove', function(e) {
 
function function_name(argument) {
 
function function_name(argument) {
Dòng 48: Dòng 50:
 
}
 
}
 
});
 
});
 +
 +
*/
 +
 +
 +
/* Google Analytics */

Bản hiện tại lúc 10:13, ngày 26 tháng 2 năm 2016

/* Bất kỳ mã JavaScript ở đây sẽ được tải cho tất cả các thành viên khi tải một trang nào đó lên. */

/*Hoa bay ngày Tết*/
/*
jQuery(document).on('mousemove', function(e) {
	function function_name(argument) {
		// body...
	}
	var xMouse = e.pageX;
	var yMouse = e.pageY;
	if (Math.random() < 0.1) {
		setTimeout(function() {
			var l = document.createElement("DIV");
			var size = (Math.floor(Math.random() * (30 - 10)) + 10);
			l.style.width = size + "px";
			l.style.height = size + "px";
            l.style.backgroundImage = "url(http://chipfc.com/Content/newyear/newyear.png)";
			var bg_pos = (Math.floor(Math.random() * 4));
			l.style.backgroundPosition = "0px -"+(size*bg_pos)+"px";
			l.style.backgroundSize = size + "px "+4*size+"px"
			l.style.position = "absolute";
			l.style.left = (xMouse) + "px";
			l.style.top = (yMouse + 10) + "px";
			l.style.zIndex = 999;
			l.style.display = 'none';
			document.body.appendChild(l);
			jQuery(l).fadeIn(200);
			var stop = false;
			var hoaroi = function() {
				if (!stop) {
					setTimeout(function() {
						window.requestAnimationFrame(hoaroi);
					}, 20);
					l.style.top = (parseInt(jQuery(l).css('top'), 10) + 1) + "px";
					if ((parseInt(jQuery(l).css('top'), 10)) % 10 == 0) {
						if (Math.random() < 0.5) {
							l.style.left = (parseInt(jQuery(l).css('left'), 10) + 1) + "px";
						} else {
							l.style.left = (parseInt(jQuery(l).css('left'), 10) - 1) + "px";
						}
					}
				}
			}
			window.requestAnimationFrame(hoaroi);
			jQuery(l).fadeOut((Math.floor(Math.random() * (1500 - 250)) + 150), function() {
				jQuery(l).remove();
				stop = true;
			});
		}, 50);
	}
});

*/


/* Google Analytics */