how to make a blinking image in CSS3
问题 I am new to CSS3 and working on a CSS3 code for blinking images. I just need to show an image with it blinking continually. I can't use a GIF image since the images come dynamically. 回答1: it's very simple... just use a CSS3 animation on opacity of the image I hope this helps.. here is a working fiddle http://jsfiddle.net/rameezrami/27754r4f/1/ or use following html <html> <head> <style> /* Firefox old*/ @-moz-keyframes blink { 0% { opacity:1; } 50% { opacity:0; } 100% { opacity:1; } } @