AmberCutie's Forum
An adult community for cam models and members to discuss all the things!

MFC Profile Snowflakes

  • ** WARNING - ACF CONTAINS ADULT CONTENT **
    Only persons aged 18 or over may read or post to the forums, without regard to whether an adult actually owns the registration or parental/guardian permission. AmberCutie's Forum (ACF) is for use by adults only and contains adult content. By continuing to use this site you are confirming that you are at least 18 years of age.
Status
Not open for further replies.
Oct 17, 2013
10
1
16
Hi

i wanted to ask if anybody knows how to add a snowflake effect to a mfc profile. That snowflakes would fall over the screen :dance:
Model or User for both would be nice.

Thank you very much:)
 
Yes exactly like this. It looks great :clap:
What is the code for this exactly please and where to put it that it looks like this ?

Thanks a lot
 
marloane said:
Yes exactly like this. It looks great :clap:
What is the code for this exactly please and where to put it that it looks like this ?

Thanks a lot

Code:
/*Keyframes*/
@keyframes snow {
  0% {
    background-position:0 0px,0 0px,0 0;
  }
  
  100% {
    background-position:500px 1000px,400px 400px,300px 300px;
  }
}

@-moz-keyframes snow {
  0% {
    background-position:0 0px,0 0px,0 0;
  }
  
  100% {
    background-position:500px 1000px,400px 400px,300px 300px;
  }
}

@-webkit-keyframes snow {
  0% {
    background-position:0 0px,0 0px,0 0;
  }
  
  50% {
    background-color:#b4cfe0;
  }
  
  100% {
    background-position:500px 1000px,400px 400px,300px 300px;
    background-color:#6b92b9;
  }
}

@-ms-keyframes snow {
  0% {
    background-position:0 0px,0 0px,0 0;
  }
  
  100% {
    background-position:500px 1000px,400px 400px,300px 300px;
  }
}

body {
  background-color:#6b92b9;
  background-image:url(https://dl.dropboxusercontent.com/u/9659390/snow.png),
                           url(https://dl.dropboxusercontent.com/u/9659390/snow3.png),
                           url(https://dl.dropboxusercontent.com/u/9659390/snow2.png);
  -webkit-animation:snow 20s linear infinite;
  -moz-animation:snow 20s linear infinite;
  -ms-animation:snow 20s linear infinite;
  animation:snow 20s linear infinite;
}

If you use it, you probably want to change the snowflake urls in the background image. I don't promise I will leave them on my Dropbox forever.
 
  • Like
Reactions: Gen
SexyStephXS said:
Kradek said:
SexyStephXS said:
Kradek said:

Idk if this is just a glitch in mobile but your profile kept growing forever. Like the boxes were also snowflakes.Lol
What browser? Looks OK on my iPad in Chrome and Safari. Android's default browser possibly?
I'm on my iPhone in safari.
Probably some iOS/Safari version specific issue then. Browsers can drive you crazy sometimes.
 
I can download the flakes and upload it on own webspace then and change the code but where to put the code in?
Till now it didnt work no matter where i tried it.

Thank you very much :thumbleft:
 
marloane said:
I can download the flakes and upload it on own webspace then and change the code but where to put the code in?
Till now it didnt work no matter where i tried it.

Thank you very much :thumbleft:
Paste it at the end of your custom CSS.

customcss.png
 
It worked. Thank you.
But that also means my normal background would be replaced with the one from the code i guess. So i think it is not possible to keep my now used background and also put on snowflakes.
 
marloane said:
It worked. Thank you.
But that also means my normal background would be replaced with the one from the code i guess. So i think it is not possible to keep my now used background and also put on snowflakes.
All you should have to do is change the rule below.
Code:
body {

  background-image:url(https://dl.dropboxusercontent.com/u/9659390/snow.png),
                           url(https://dl.dropboxusercontent.com/u/9659390/snow3.png),
                           url(https://dl.dropboxusercontent.com/u/9659390/snow2.png),
                           url(<your current background image>);
  -webkit-animation:snow 20s linear infinite;
  -moz-animation:snow 20s linear infinite;
  -ms-animation:snow 20s linear infinite;
  animation:snow 20s linear infinite;
}
 
  • Like
Reactions: marloane
The code worked well. Also if i put in my own background. The only problem is now that the background i want to use is also moving then. Is there a way to have this normal backgroung solid - not moving and the flakes to move ?

Maybe if i write the normal background in another line from the code.
Thank you very much for the great help
 
marloane said:
The code worked well. Also if i put in my own background. The only problem is now that the background i want to use is also moving then. Is there a way to have this normal backgroung solid - not moving and the flakes to move ?

Maybe if i write the normal background in another line from the code.
Thank you very much for the great help
Would you link your profile for me so I can take a look? Also tell me what browser you are using.

I added a background to my profile. Here is the exact code I am using.

Code:
/*Keyframes*/
@keyframes snow {
  0% {
    background-position:0 0px,0 0px,0 0;
  }
  
  100% {
    background-position:500px 1000px,400px 400px,300px 300px;
  }
}

@-moz-keyframes snow {
  0% {
    background-position:0 0px,0 0px,0 0;
  }
  
  100% {
    background-position:500px 1000px,400px 400px,300px 300px;
  }
}

@-webkit-keyframes snow {
  0% {
    background-position:0 0px,0 0px,0 0;
  }
  
  50% {
    background-color:#b4cfe0;
  }
  
  100% {
    background-position:500px 1000px,400px 400px,300px 300px;
    background-color:#6b92b9;
  }
}

@-ms-keyframes snow {
  0% {
    background-position:0 0px,0 0px,0 0;
  }
  
  100% {
    background-position:500px 1000px,400px 400px,300px 300px;
  }
}

body {
  background-color:#6b92b9;
  background-image:url(https://dl.dropboxusercontent.com/u/9659390/snow.png),url(https://dl.dropboxusercontent.com/u/9659390/snow3.png),url(https://dl.dropboxusercontent.com/u/9659390/snow2.png),url(https://dl.dropboxusercontent.com/u/9659390/xmas-background.jpg);
  background-size:auto,auto,auto,contain;
  -webkit-animation:snow 20s linear infinite;
  -moz-animation:snow 20s linear infinite;
  -ms-animation:snow 20s linear infinite;
  animation:snow 20s linear infinite;
}
 
Nevermind, I see your problem in Firefox and Internet Explorer. Gotta love browsers! This code below should fix the moving background.

Code:
/*Keyframes*/
@keyframes snow {
  0% {
    background-position:0 0px,0 0px,0 0,0 0;
  }
  
  100% {
    background-position:500px 1000px,400px 400px,300px 300px,0 0;
  }
}

@-moz-keyframes snow {
  0% {
    background-position:0 0px,0 0px,0 0,0 0;
  }
  
  100% {
    background-position:500px 1000px,400px 400px,300px 300px,0 0;
  }
}

@-webkit-keyframes snow {
  0% {
    background-position:0 0px,0 0px,0 0,0 0;
  }
  
  100% {
    background-position:500px 1000px,400px 400px,300px 300px,0 0;
  }
}

@-ms-keyframes snow {
  0% {
    background-position:0 0px,0 0px,0 0,0 0;
  }
  
  100% {
    background-position:500px 1000px,400px 400px,300px 300px,0 0;
  }
}

body {
  background-color:#6b92b9;
  background-image:url(https://dl.dropboxusercontent.com/u/9659390/snow.png),
url(https://dl.dropboxusercontent.com/u/9659390/snow3.png),
url(https://dl.dropboxusercontent.com/u/9659390/snow2.png),
url(https://dl.dropboxusercontent.com/u/9659390/xmas-background.jpg);
  background-size:auto,auto,auto,contain;
  -webkit-animation:snow 20s linear infinite;
  -moz-animation:snow 20s linear infinite;
  -ms-animation:snow 20s linear infinite;
  animation:snow 20s linear infinite;
}

You also might need to change this line:
Code:
background-size:auto,auto,auto,contain;
from "contain" to something else. I set it to contain on mine so that the background image would be resized to the size of the browser. Setting it to "auto" tells the browser not to do anything with it. You can easily google the possible background-size choices.
 
  • Like
Reactions: marloane
Works great at the moment. Thank you very very much :clap: Hope i will not find anything else that is not good to not bother you anymore. Thank you for all the work you done for it :thumbleft:
 
  • Like
Reactions: Kradek
Status
Not open for further replies.