J.Wondergem

Well-known Member
Location
Rockford, Mi.
69 KW.jpg
 
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8" /> <title>Shooting Star Example</title> <style> body { margin: 0; padding: 40px; font-family: Arial, sans-serif; background: radial-gradient(circle at top, #111 0, #000 60%); color: #fff; overflow: hidden; /* so the star can move off-screen cleanly */ } h1, p { position: relative; z-index: 1; /* keep text above background */ } /* Shooting star */ .shooting-star { position: fixed; top: -10px; left: -50px; width: 3px; height: 3px; background: white; box-shadow: 0 0 8px 4px rgba(255, 255, 255, 0.8); border-radius: 50%; transform: rotate(45deg); animation: shoot 2s linear infinite; z-index: 0; } .shooting-star::after { content: ""; position: absolute; top: 0; left: -80px; width: 80px; height: 2px; background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.9)); } @keyframes shoot { 0% { transform: translate(-100px, -100px) rotate(45deg); opacity: 0; } 10% { opacity: 1; } 100% { transform: translate(800px, 600px) rotate(45deg); opacity: 0; } } </style></head><body> <div class="shooting-star"></div> <h1>My Night Sky Document</h1> <p> This is some sample text. A shooting star occasionally streaks across the page, giving the document a little bit of magic. </p> <p> You can add more content here as usual—headings, paragraphs, lists, anything you like. </p></body></html>
 
Yesterday's Tractor Forums

We sell tractor parts! We have the parts you need to repair your tractor - the right parts. Our low prices and years of research make us your best choice when you need parts. Shop Online Today.

Back
Top