Cthulhu
Administrator
- AKA
- Yop

Stoeled and modified it from http://cssdeck.com/labs/css3-snow, I added the CSS in the 'the lifestream' stylesheet at the bottom. It's quite nice.
Perhaps we could compromise and switch our background to a static picture of snow, rather than a fancy animation? That wouldn't cause any browser issues and nobody's phone would suffer a core meltdown.
@keyframes snow {
0% { background-position: 0px 0px, 0px 0px, 0px 0px }
100% { background-position: 500px 1000px, 400px 400px, 300px 300px }
}
@-moz-keyframes snow {
0% { background-position: 0px 0px, 0px 0px, 0px 0px }
100% { background-position: 500px 1000px, 400px 400px, 300px 300px }
}
@-webkit-keyframes snow {
0% { background-position: 0px 0px, 0px 0px, 0px 0px }
50% { background-color: #051012}
100% {
background-position: 500px 1000px, 400px 400px, 300px 300px;
background-color: #1C1D1C;
}
}
@-ms-keyframes snow {
0% { background-position: 0px 0px, 0px 0px, 0px 0px }
100% { background-position: 500px 1000px, 400px 400px, 300px 300px }
}
body {
background-color: #1C1D1C;
background-image: url('http://img138.imageshack.us/img138/5230/snowh.png'), url('http://img594.imageshack.us/img594/9146/snow3q.png'), url('http://img196.imageshack.us/img196/5065/snow2l.png');
-webkit-animation: snow 20s linear infinite;
-moz-animation: snow 20s linear infinite;
-ms-animation: snow 20s linear infinite;
animation: snow 20s linear infinite;
}