1.js
function aniText() { var PC = $(window).width() > 1200, mobile = $(window).width() <= 1200, winWidth = $(window).width(), winHeight = $(window).height(); if (mobile) { } if (PC) { const textElements = gsap.utils.toArray('.ani-text-opacity'); textElements.forEach(text => { gsap.to(text, { backgroundSize: '100%', ease: 'none', scrollTrigger: { trigger: text, start: 'center 80%', end: 'center 50%', scrub: true, // markers: {startColor: "red", endColor: "red", fontSize: "18px", fontWeight: "bold", indent: 20}, }, }); }); } } aniText();
2.css
<p class="title1 ani-text-opacity">青绿引领固废分选</p>
标签:动画,叠加,过渡,text,0.5,background,webkit,fff,255 From: https://www.cnblogs.com/Loreen/p/18303696