create animated header?
-
Maybe this is too much to ask, but could someone please help me with this?
I am really struggling to learn CSS):
What I need is to have an animated header-image in one single colour – then I want it to slowly fade into a different colour and then back again..so that if the website is open for a longer period of time the colour has changed
Thank you for helping me
The blog I need help with is: (visible only to logged in users)
-
You don’t need any CSS editing to create a .gif header image. You must be aware however that the custom header image dimensions you upload into the blog must be in perfect accord with the header size for the theme or the animation will not be displayed. If you think you can upload a .gif that is not correctly sized and then use the cropper, that will not succeed. The animation will not appear and instead you will have an ugly black box.
-
P.S. What you are asking for ie. the fading color bit that changes over time (so that if the website is open for a longer period of time the colour has changed) is probably too advanced to be possible here.
-
Ok, thats probably why I couldnt do it haha(:
Create a .gif header image – will read up on it
Thank you(:
-
I don’t provide CSS editing help. Those who do provide it will respond to you here when they can.
-
-
of course! I`m sorry I didnt do it right away…to exited I guess..
The colors arent fixed but it works, thats the important..thing, fact or whatever …
heres the code!
@keyframes example {
0% {
background-color: rgba(0,0,70,0.65);
}50% {
background-color: rgba(100,0,0,0.65);
}100% {
background-color: rgba(0,0,70,0.65);
}
}div.cover {
animation-name: example;
animation-duration: 45s;
animation-iteration-count: infinite;
} -
Please let me know if that was not what you were after. I am really a noobe, feeling that I made the impossible happen..and I cannot explain it all.. Hihi…
If you need something more I’ll take some screenshots for you
- The topic ‘create animated header?’ is closed to new replies.