I have class that applies dotted style border property to text block at runtime. I am trying to find solution, that makes border move like gif image using CSS. Is there any way to achieve this.
Thanks
feedback
|
|
Browsers render borders statically; there is no way you could ever make the border styles animate. (And with good reason...) Since you tagged your question css3, however, at the risk of driving web designers everywhere insane, you could theoretically use | |||||||||
feedback
|
|
Not CSS3, but it works: http://matthewjamestaylor.com/blog/animated-photoshop-selection-on-a-web-page You can make it without images, by utlizing CSS3 gradients for the stripes and animating background-position (rough demo by Snook: http://snook.ca/testing/anim-bg-pos.html), but I wouldn't recommend it since it would only work well on Webkit. | |||
|
feedback
|
|
I've made a complete example based on this article. Enjoy! | |||
|
feedback
|
|
Do you mean you want to animate the dotted border? You could look into CSS 3 border images, which would allow you to provide an (animated) gif for your border, if you don't mind not supporting IE. | |||
|
feedback
|
|
I'm also looking for such a solution since I'm trying to simulate the animated border that excel uses to indicate that the current selection has been cut and is waiting to be pasted. Tacky? No, not in the context of the use I intend. I found this jQuery plugin. http://there4development.com/projects/animatedborder/, the orginal poster might want to give it a go. | |||
|
feedback
|
|
you can use a gif image in the background, the only solution for doing it via css. otherwise your javascript | |||
|
feedback
|
|
Even if you could, you shouldn't. It would be just as annoying as the blink tag used to be, don't go down that road. | |||||||||||
feedback
|