0

画面の下隅に配置したい2つのビデオタグがあります。さらに、下の画像のように、内側のビデオ タグが外側のビデオ タグと重なる必要があります。

ここに画像の説明を入力

これは私が思いつくことができるものです:

<body>
    <div class="container">
        <div class="widget_contaner">
            <div class="widget_head">this is head of widget</div>
            <div class="widget_body">
                <video class="large_video" src="#"></video>
                <video class="mini_video" src="#"></video>
            </div>
        </div>
    </div>
</body>

CSS

.widget_contaner {
    right: 0px;
    position: fixed;
    bottom: 30px;
    z-index: 99999999999999;
}
.widget_header {
    background-color: #3fa757;
    width: 240px;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    border: 1px solid #ccc;
    font-size: 12px;
    height: 25px;
    line-height: 25px;
    font-family:'Open Sans', sans-serif;
    border-radius: 5px;
}
.widget_body {
    width: 240px;
    height: 150px;
}
.large_video {
    height: 100%;
    width: 100%;
}
.mini_video {
    position: absolute;
    height: 30%;
    width: 30%;
    bottom: 32px;
    right: 4px;
    opacity: 0.75;
}

画像に示されているように、これらのビデオタグを相互に相対的に配置するにはどうすればよいのでしょうか?

Jsfiddle :ここをクリック

4

2 に答える 2