给博客增加视频背景特效

  • 内容
  • 相关

html代码

<video autoplay loop muted>
  <source src="视频地址" type="video/mp4"  />
</video>

CSS代码

<style>
 video{  
    position: fixed;  
    right: 0px;  
    bottom: 0px;  
    min-width: 100%;  
    min-height: 100%;  
    height: auto;  
    width: auto;  
    /*加滤镜*/
    /*filter: blur(15px); //背景模糊设置 */
    /*-webkit-filter: grayscale(100%);*/  
    /*filter:grayscale(100%); //背景灰度设置*/  
    z-index:-11
} 
</style>
黑蜘蛛

本文标签:

版权声明:若无特殊注明,本文皆为《ღ軍尐ღ》原创,转载请保留文章出处。

字数统计:本文共有 《338》 个。

本文链接:给博客增加视频背景特效 - https://4dn.net/jsxx/228.html