Lines Matching refs:o

150   this.setXY = function(o, x, y) {  argument
152 if (!o) {
158 o.style.left = (x - storm.flakeWidth) + 'px';
159 o.style.top = (y - storm.flakeHeight) + 'px';
163 o.style.right = (100-(x/screenX*100)) + '%';
165 o.style.top = (Math.min(y, docHeight-storm.flakeHeight)) + 'px';
172 o.style.right = (100-(x/screenX*100)) + '%';
173 o.style.bottom = (100-(y/screenY*100)) + '%';
178 o.style.right = (100-(x/screenX*100)) + '%';
179 o.style.top = (Math.min(y, docHeight-storm.flakeHeight)) + 'px';
331 this.flakes[i].o.style.display = 'none';
349 this.flakes[i].o.style.display = 'block';
369 this.o = document.createElement('div');
370 this.o.innerHTML = storm.snowCharacter;
372 this.o.setAttribute('class', storm.className);
374 this.o.style.color = storm.snowColor;
375 this.o.style.position = (fixedForEverything?'fixed':'absolute');
378 this.o.style[features.transform.prop] = 'translate3d(0px, 0px, 0px)';
380 this.o.style.width = storm.flakeWidth+'px';
381 this.o.style.height = storm.flakeHeight+'px';
382 this.o.style.fontFamily = 'arial,verdana';
383 this.o.style.cursor = 'default';
384 this.o.style.overflow = 'hidden';
385 this.o.style.fontWeight = 'normal';
386 this.o.style.zIndex = storm.zIndex;
387 docFrag.appendChild(this.o);
394 storm.setXY(s.o, s.x, s.y);
399 s.o.style.top = (screenY+scrollY-storm.flakeHeight)+'px';
401 s.o.style.top = storm.flakeBottom+'px';
403 s.o.style.display = 'none';
404 s.o.style.top = 'auto';
405 s.o.style.bottom = '0%';
406 s.o.style.position = 'fixed';
407 s.o.style.display = 'block';
456 … s.o.style.visibility = (s.twinkleFrame && s.twinkleFrame % 2 === 0 ? 'hidden' : 'visible');
458 s.o.style.opacity = (s.twinkleFrame && s.twinkleFrame % 2 === 0 ? 0 : 1);
476 this.setOpacity = function(o,opacity) { argument
480 o.style.opacity = opacity;
488 s.setOpacity(s.o,s.meltFrames[s.meltFrame]);
489 s.o.style.fontSize = s.fontSize-(s.fontSize*(s.meltFrame/s.meltFrameCount))+'px';
490 …s.o.style.lineHeight = storm.flakeHeight+2+(storm.flakeHeight*0.75*(s.meltFrame/s.meltFrameCount))…
499 s.o.style.display = 'none';
500 s.o.style.position = (fixedForEverything?'fixed':'absolute');
501 s.o.style.bottom = 'auto';
506 s.setOpacity(s.o,1);
507 s.o.style.padding = '0px';
508 s.o.style.margin = '0px';
509 s.o.style.fontSize = s.fontSize+'px';
510 s.o.style.lineHeight = (storm.flakeHeight+2)+'px';
511 s.o.style.textAlign = 'center';
512 s.o.style.verticalAlign = 'baseline';
516 s.o.style.display = 'block';