selection-pseudo-crash.html (455B)
1 <!DOCTYPE html> 2 <html> 3 <body> 4 <style> 5 @keyframes myAnim {} 6 7 .target { 8 animation: myAnim linear 0.5s forwards 9 } 10 11 #scroll_target { 12 animation-trigger: --scrolltrigger play-once; 13 timeline-trigger: --scrolltrigger scroll() 150px 200px 14 } 15 16 .subject, 17 .target::selection { 18 height: 50px; 19 } 20 </style> 21 <div id=scroll_target class="subject target" 0></div> 22 </body> 23 </html>