這篇文章帶給大家的內容是介紹如何在網站頭部添加影片海報?新增影片海報的方法(程式碼範例) 。有一定的參考價值,有需要的朋友可以參考一下,希望對你們有幫助。
為網站頭部添加影片海報的程式碼:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>视频海报</title> <style> *{ margin: 0; padding: 0; } #banner{ width: 100%; height: 500px; background: purple; overflow: hidden; position: relative; } #banner video{ width: 100%; position: relative; opacity: 0.6; /* 设置透明度 */ } #banner h2,h4{ position: absolute; top: 120px; left: 150px; width: 100%; text-align: left; color: #fff; line-height: 30px; } #banner h2{ top: 80px; font-size: 40px; text-decoration: underline; } </style> </head> <body> <div id="banner"> <video loop autoplay> <!-- loop循环播放,autoplay自动播放 --> <source src="video/banner.mp4"> </video> <h2>SLOW DOWN</h2> <h4>静下来<br> 携一缕清风,续一杯清茶 <br> 且听风轻云淡</h4> </div> </body> </html>
結果
以上是如何在網站頭部添加影片海報?添加視訊海報的方法(程式碼範例)的詳細內容。更多資訊請關注PHP中文網其他相關文章!