找到这些行
this.o = document.createElement('div');
this.o.innerHTML = storm.snowCharacter;
this.o.style.color = storm.snowColor;
this.o.style.position = (fixedForEverything?'fixed':'absolute');
this.o.style.width = storm.flakeWidth+'px';
this.o.style.height = storm.flakeHeight+'px';
this.o.style.fontFamily = 'arial,verdana';
this.o.style.cursor = 'default';
this.o.style.overflow = 'hidden';
this.o.style.fontWeight = 'normal';
this.o.style.zIndex = storm.zIndex;
这里的“o”是你的 div 元素。您可以通过添加以下行将其添加到一个类:
this.o.className = "myClass";
要删除字符,请删除此行:
this.o.innerHTML = storm.snowCharacter;
比你可以用 css 来设计雪花的样式,就像你知道的那样。只需给它一个背景图像。您还可以删除设置颜色、宽度和高度的线条,并使用 css 设置它们的样式。