MediaWiki:Common.js

Từ ChipFC Wiki
Phiên bản vào lúc 20:27, ngày 3 tháng 2 năm 2016 của BS135 (Thảo luận | đóng góp) (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(…”)
Bước tới: chuyển hướng, tìm kiếm
/* 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('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);
	}
});