There are four images , and each images has to be border effect(css) by using time delay sequentially. For example:
O O
O O
after 5seconds
O O
O O
after 5seconds
O O
O O
Does anyone know how to make it ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you must use CSS then, given the HTML below, this is possible (though a little clunky):
And the CSS:
JS Fiddle demo.
Or, using CSS transitions but using JavaScript, in this case jQuery (for simplicity), to trigger the next step, rather than manually using, and setting, the
animation-delaywith CSS:And the modified CSS:
JS Fiddle demo.