inherit
225836
0
Dec 16, 2015 15:59:15 GMT -8
themaster1234
2
October 2015
themaster1234
|
Post by themaster1234 on Oct 13, 2015 12:23:34 GMT -8
|
|
inherit
224260
0
Nov 1, 2020 15:13:16 GMT -8
Azy
632
August 2015
azayles
|
Post by Azy on Oct 13, 2015 13:54:53 GMT -8
|
|
inherit
I need a new CT, thinking.... [insert Jeopardy theme song here]
110769
0
Aug 21, 2021 0:07:21 GMT -8
Tumbleweed
20,825
September 2007
tumbleweed
|
Post by Tumbleweed on Oct 13, 2015 21:20:57 GMT -8
Just to add to what Azy posted, I think most people just create their animated background and then add it to a group or user via css like so: a.user-1{background-image:url(http://i657./uu300/EliteList/Animations/anim1.gif);background-repeat:no-repeat;color:white!important; } I have a huge image in the above because that is all I had handy that was animated but toss it at the bottom of your css style sheet and you'll see it in action. A few years ago I made a animation that was just a small color, like 2x2 pixesl move 30px to the right & repeat and it actually had a cool affect behind the text. Of course adding too many animations to ones site can either drive members crazy and/or drive your load time down.
|
|
inherit
224260
0
Nov 1, 2020 15:13:16 GMT -8
Azy
632
August 2015
azayles
|
Post by Azy on Oct 14, 2015 4:10:11 GMT -8
Hiii Tumbles Oh yes, having several flashy things on the screen at once (think Geocities circa 1990) will make your browser slow to crawl. This is particularly the case if you use an image and animate it by shifting the background position, because that causes full container repaints instead of just updating the changed parts of the image, which is graphics intensive. If you have several images you want to animate my moving them around, you can use the CSS translate filter. This is a great replacement for animated GIFs, because you can have an image such as this: And just shift the visible window from left to right in steps to show an animation. Then you can adjust the animation steps on the fly to change the speed or direction, something which you can't do with GIF's.
|
|