サイドスライド画像(1)
12516 ワード
html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>사이드 슬라이딩</title>
</head>
<body>
<div class="container">
<div class="panel active" style="background-image: url('')">
<h3>사진 이름</h3>
</div>
<div class="panel" style="background-image: url('')">
<h3>사진 이름</h3>
</div>
<div class="panel" style="background-image: url('')">
<h3>사진 이름</h3>
</div>
<div class="panel" style="background-image: url('')">
<h3>사진 이름</h3>
</div>
<div class="panel" style="background-image: url('')">
<h3>사진 이름</h3>
</div>
</div>
<script src="script.js"></script>
</body>
</html>
写真を検索https://pixabay.com/
https://unsplash.com/
https://picjumbo.com/
css
デフォルトテンプレートcssでフォントのみ変更
@import url('https://fonts.googleapis.com/css?family=Muli&display=swap');
* {
box-sizing: border-box;
}
body {
font-family: 'Muli', sans-serif;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
overflow: hidden;
margin: 0;
}
CSSを1つずつ適用.container {
display: flex;
width: 90vw;
}
.panel {
background-size: cover;
background-position: center;
background-repeat: no-repeat;
height: 80vh;
border-radius: 50px;
color: #fff;
cursor: pointer;
flex: 0.5;
margin: 10px;
position: relative;
transition: all 0.7s ease-in;
}
.panel h3 {
font-size: 24px;
position: absolute;
bottom: 20px;
left: 20px;
margin: 0;
opacity: 0;
}
.panel.active {
flex: 5;
}
.panel.active h3 {
opacity: 1;
transition: opacity 0.3s ease-in 0.4s;
}
@media (max-width: 480px) {
.container {
width: 100vw;
}
.panel:nth-of-type(4),
.panel:nth-of-type(5) {
display: none;
}
}
Reference
この問題について(サイドスライド画像(1)), 我々は、より多くの情報をここで見つけました https://velog.io/@drv98/사이드-슬라이딩-이미지テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol