
30.12.2023, 03:25
|
|
Постоянный
Регистрация: 05.12.2021
Сообщений: 813
С нами:
2337062
Репутация:
68
|
|
Сообщение от sositexuy1234
и это
исходный код видео и сss
Код:
css:
Код:
section .video-container {
position: relative;
overflow: hidden;
width: 100%;
padding-top: 56.25%;
}
section iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
section #video {
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
section #video .video-container {
transition: transform 0.3s ease-in-out;
}
section #video .video-container:hover {
transform: scale(1.1);
}
section #video:hover h2 {
color: #ff4500;
}
section #video .video-container {
position: relative;
overflow: hidden;
width: 100%;
padding-top: 56.25%;
}
section #video .video-container .play-button {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 80px;
height: 80px;
background-color: rgba(255, 255, 255, 0.8);
border-radius: 50%;
display: none;
cursor: pointer;
}
section #video .video-container:hover .play-button {
display: block;
}
Как будто бы нужно фулл код приложить, а не обрывок
|
|
|