关于最后这个例子,谁有完整版的例子么?
使用了楼上的,很好用
<!doctype> <html> <head> <style> @keyframes fadein { from { opacity: 0; } to { opacity: 1; } } body { margin: 0 0; padding: 0 0; } text { position: absolute; /*根据图片调节,我的图片是200px*200px*/ width: 200px; margin: 180px auto; text-align: center; } img { animation:fadein 5s 1; -webkit-animation:fadein 5s 1; /* Safari 和 Chrome */ } </style> </head> <body> <text>看看看看看看看看看</text> <img src="1.jpg" alt=""> </body> </html>
自己写的
你指的是包括HTML跟CSS代码么