-
Notifications
You must be signed in to change notification settings - Fork 5
/
shubiao.js
69 lines (63 loc) · 2.22 KB
/
shubiao.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
function getMousePos(event) {
var e = event || window.event;
var mouseInfo = {
mouseX : e.clientX,
mouseY : e.clientY
}
return mouseInfo;
}
function getMouseArt() {
this.artStyle = {
position: "fixed",
top: 0,
left: 0,
width: "50px",
height: "50px",
"font-size": 0,
"color": 0,
"text-transform": 0
};
this.init = function(obj) {
var character = ["小","梁","超","级","可","爱","鸭"];
var font_trans = ["uppercase", "lowercase"];
this.Alpha = 1;
this.element = document.createElement('div');
var text = document.createTextNode(character[Math.floor(Math.random() * character.length)]);
this.element.appendChild(text);
this.addStyle(this.element, this.artStyle);
var offsetV = Math.floor(Math.random() * 60 - 30); // -30 ~ 30
this.element.style.left = obj.mouseX + offsetV +"px"; // x
this.element.style.top = obj.mouseY + offsetV +"px"; // y
this.element.style.fontSize = Math.floor(Math.random() * 20 + 10) + "px";
this.element.style.color = "hsla("+ Math.floor(Math.random() * 255) + ",100%,50%," + this.Alpha + ")";
this.element.style.textTransform = font_trans[Math.floor(Math.random() * 2)];
document.body.appendChild(this.element);
}
this.addStyle = function(ele, genuine) {
for (var k in genuine) {
ele.style[k] = genuine[k];
}
}
this.delElement = function() {
document.body.removeChild(this.element);
}
this.reduceColor = function(win) {
if (this.Alpha <= 1 && this.Alpha > 0) {
this.Alpha = this.Alpha - 0.1;
this.element.style.color = "hsla("+ Math.floor(Math.random() * 255) + ",100%,50%," + this.Alpha + ")";
console.log(this.Alpha);
}
else {
clearInterval(win);
this.delElement();
}
}
}
document.onmousemove = function(event) {
var obj = getMousePos(event);
var art = new getMouseArt();
art.init(obj);
var win = setInterval(function() {
art.reduceColor(win);
}, 30);
}