我想做一个自定义的不透明度动画元素或专业。我试图在网上找到一些教程,因为我是这方面的初学者。
我想要的参考资料:https://www.anchour.com/
下面是我在主要css中发现的内容:
.hero.hero--home.video-in .hero-video-init, .hero.hero--home.video-in .hero-video-wrap:after, .hero.hero--home.video-in .hero-video-wrap:before {
opacity: 1;}
.hero.hero--home .hero-video-wrap:after {
    background-color: #000;
    opacity: 0;
    transition: opacity 3s ease;
    transition-delay: 6.25s;
    z-index: 10;
}
.hero.hero--home .hero-video-wrap:after, .hero.hero--home .hero-video-wrap:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}https://stackoverflow.com/questions/73522667
复制相似问题