Skip to content

Instantly share code, notes, and snippets.

@naturallucky
Last active May 11, 2016 02:04
Show Gist options
  • Save naturallucky/2e8d1f025aee12d510e8c774a2fa12a1 to your computer and use it in GitHub Desktop.
Save naturallucky/2e8d1f025aee12d510e8c774a2fa12a1 to your computer and use it in GitHub Desktop.
dynamic scroll css( fix version )
div.stage {
height: 600px;
/*background-position: 50% 50%;*/
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
}
.content {
padding: 30px 0;
height: 600px;
}
.spot {
max-width: 960px;
margin: 0 auto;
}
.textcenter {
text-align: center;
font-weight: bold;
font-size: 30px;
margin-top: auto;
margin-bottom: auto;
}
.spot span.title {
line-height: 600px;
text-align: center;
font-size: 60px;
color: #fff;
font-weight: bold;
text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}
<div class="stage" style="background-image: url(pexels-photo-67752.jpeg);">
<div class="spot">
<h2>新渡戸稲造</h2>
</div>
</div>
<div class="content">
<div class="spot textcenter">
</div>
</div>
<div class="stage" style="background-image: url(pexels-photo-24580.jpg);">
<div class="spot">
<h2>二宮尊徳</h2>
</div>
</div>
<div class="content">
<div class="spot textcenter">
</div>
</div>
<div class="stage" style="background-image: url(pexels-photo-30267.jpg);">
<div class="spot">
<h2></h2>
</div>
</div>
<div class="content">
<div class="spot textcenter">
</div>
</div>
<div class="stage" style="background-image: url(pexels-photo.jpg);">
<div class="spot">
<h2>END</h2>
</div>
</div>