Do it yourself: CSS für Profil und Blog
13.11.2012 um 15:00Ach stimmt. Na ich werde mal ein bisschen rum probieren. danke euch :)
<style>
body {/*hier kommt das hintergrund bild rein was du sonst nutzt*/
background: url(http://xn--80aqafcrtq.cc/img/1/5/5/15502.jpg);
background-attachment: fixed;
background-repeat: none;
z-index: 50000!important;
}
/*hier kommt alles rein was du sichtbar hast'/
a, .userfunction, .userfunction a, ul.clearfix, .header, .tabnav.clearfix, #show_gb_post_wrap, .clearfix.hidden {
z-index: 50000!important;
position: relative;
}
/*und hier alles was du auf display none hast*/
div.profile_info, div.head_links, div.profile_links center {
display: none;
}
@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;}
100% {background-position: 500px 1000px, 400px 400px, 300px 300px;}
}
@-ms-keyframes snow {
0% {background-position: 0px 0px, 0px 0px, 0px 0px;}
100% {background-position: 500px 1000px, 400px 400px, 300px 300px;}
}
#maindiv {
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;
position: fixed;
width: 99%;
height: 100%;
top: 0;
left: 0;
z-index: -50!important;
}
</style>
/*und diesen div setzt du auch mit rein, der hat die schneeflocken inne*/
(ich habs von darkdepp, nur etwas verändert)