HTMLify
css1.html
Views: 727 | Author: demo
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | <!DOCTYPE html> <html> <head> <title>Non-Bootstrap Animation Demo</title> <style> /* Custom CSS for the animation */ .container { text-align: center; padding: 50px; } .fade-in { animation: fadeIn 4s; opacity: 0; } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } </style> </head> <body> <div class="container"> <h1>CSS Animation Demo</h1> <p>Animate an element with a simple fading effect:</p> <!-- Element with Fading Animation --> <div class="fade-in"> <p>This is an element with a fading animation.</p> </div> </div> </body> </html> |