zoukankan      html  css  js  c++  java
  • 把视频当成背景

    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="UTF-8">
    <title></title>
    <style type="text/css">
    *{margin: 0;padding: 0;}
    h1{margin: 50px auto; 300px;}
    video{
    position: fixed;
    z-index: -1;
    object-fit: cover;
    100%;
    height: 100%;
    }
    /*object-fit:cover 的裁剪方式和 background-size:cover 的完全相同,不过它是用来为 imgs、videos 和其他的媒体标签设置样式的,而不是给背景图片设置样式。*/
    </style>
    </head>
    <body>
    <video autoplay loop poster="http://yuxiedu.org.cn/index3/ppp.png">
    <!--自动播放 循环播放 带有预览图-->
    <source src="http://yuxiedu.org.cn/index3/pp.mp4 " type="video/mp4"></source>
    <source src="http://yuxiedu.org.cn/index3/pp.ogg" type="video/ogg"></source>
    </video>
    <h1>用视频当背景</h1>
    </body>
    </html>

  • 相关阅读:
    算术运算
    数据分析
    科学计算
    面向对象
    文件操作-py
    pillow图像处理
    模块
    固定翼飞行过程产生的阻力
    修改行间距等基本操作
    文件操作
  • 原文地址:https://www.cnblogs.com/wzh1995/p/6782400.html
Copyright © 2011-2022 走看看