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

link|improve this question

76% accept rate
7  
Please... don't. – BoltClock Mar 10 '11 at 14:34
@boltclock you read my mind – Jeremy Battle Mar 10 '11 at 14:38
1  
@Jeremy Battle: @BlotClock is a clock. He simply moved forward in time, read the comment you posted, came back and posted it before you did. – WTP'-- Mar 10 '11 at 17:38
@Radek S: That has to be the best comment about me that I have ever read, thank you. (You misspelled "bolt", though.) – BoltClock Mar 11 '11 at 6:25
@BoltClock thx, and sorry my keyboard is only 6cm wide do it's difficult to type without epic spelling fails – WTP'-- Mar 11 '11 at 7:42
show 4 more comments
feedback

7 Answers

up vote 5 down vote accepted

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 , however, at the risk of driving web designers everywhere insane, you could theoretically use border-image with a carefully-crafted animated GIF (again, it would depend on how a browser implements border-image with animated images). But like I said in my comment, please don't.

link|improve this answer
You could suggest him use blink tags, what more does anyone want :) – Myles Gray Mar 10 '11 at 14:38
2  
@Myles Gray You haven't even seen what graphics he wants to implement - how can you say it will look ugly? He might find a perfectly reasonable solution. – easwee Mar 10 '11 at 16:53
Yup - only way to achieve this is with an animated .gif (2px black white that alternates it's colors) set as the border-image. – JAG2007 Apr 28 '11 at 12:53
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.

link|improve this answer
nice example thanks :) – mehul9595 Mar 11 '11 at 10:03
feedback

I've made a complete example based on this article. Enjoy!

link|improve this answer
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.

link|improve this answer
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.

link|improve this answer
feedback

you can use a gif image in the background, the only solution for doing it via css. otherwise your javascript

link|improve this answer
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.

link|improve this answer
2  
he asked for a solution, not an opinion. – Steve Aug 24 '11 at 20:07
Sometimes the ignorant has to be taught - ford didn't give people the faster horses they asked for either. Often an opinion is the right solution - if a guy asked me "how do i shoot myself in the foot" I wouldn't give him a gun. – Martin Jespersen Aug 25 '11 at 6:06
1  
And how do you know what he intends to do with it and makes you a judge? Steven Herod's need above seems legitimate. I'm looking to use it while a user is dragging something so they can clearly see the borders of it. Personally, I'm using the gradient method as I'm designing for html used in an iPad app. – Mark Lilback Jan 22 at 2:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.