小编给大家分享一下css3.0怎么结合video视频实现的创意开幕效果,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!用CSS 3.0结合video视频实现的创意开
小编给大家分享一下css3.0怎么结合video视频实现的创意开幕效果,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!
用CSS 3.0结合video视频实现的创意开幕,效果如下:
以下是代码实现。
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta Http-equiv="X-UA-Compatible" content="ie=edge"> <title>CSS 3.0结合video视频实现的创意开幕</title> <style> * { margin: 0; padding: 0; font-family: 'Poppins', sans-serif; } body { display: flex; align-items: center; justify-content: center; min-height: 100vh; background: #000; } h3 { position: relative; font-size: 3.4em; font-weight: 900; color: #fff; z-index: 1; overflow: hidden; margin: 20px 20px 0 0; } h3 span { color: #ff022c; } h3::before { content: ''; position: absolute; left: -20%; width: 120%; height: 100%; background: linear-gradient(90deg, transparent 0%, #000 5%, #000 100%); animation: animate 5.5s linear forwards; animation-delay: 2s; } @keyframes animate { 0% { left: -20%; } 100% { left: 110%; } } video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; pointer-events: none; mix-blend-mode: screen; } </style></head><body> <video src="https://klxxcdn.oss-cn-hangzhou.aliyuncs.com/histudy/hrm/media/08reverse.mp4" autoplay muted></video> <h3><span>We</span> must uni<span>te a</span>gainst COVID-19</h3></body></html>
以上是“CSS3.0怎么结合video视频实现的创意开幕效果”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注编程网精选频道!
--结束END--
本文标题: CSS3.0怎么结合video视频实现的创意开幕效果
本文链接: https://lsjlt.com/news/251561.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0