绝绝美登录界面!滑动切换效果!图片背景.html

绝绝美登录界面!滑动切换效果,图片背景html




    
    
    
    绝美登录界面!滑动切换效果



    

欢迎

加入我们!

正方形图片

注册

已有账号?去登录

视频为背景HTML代码:

视频为背景css代码:

    body {
        /* 相对定位 */
        position: relative;
        width: 100%;
        height: 100vh;

    }

    .video {
        /* 绝对定位 */
        position: absolute;
        object-fit: contain;


        min-width: 100%;
        min-height: 100%;
        /* 视频不显示控制栏 */
        object-fit: cover;

        /* 视频定位方式设为固定 */
        position: fixed;
        /* //视频位置 */
        right: 0;
        bottom: 0;
        /* 不会因视频尺寸造成页面需要滚动 */

        width: auto;
        height: auto;
        /* z轴定位 */
        z-index: -100;
        /* 添加灰度蒙版,如果设定为100%则视频显示为黑白 */
        filter: grayscale(20%);
    }

你可能感兴趣的:(html,前端,css)