Quantcast
Channel: CSSタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 8591

ScrollReveal.jsでええ感じのパララックス効果を実装する

$
0
0

スクロールすると画像がふわって出てくる感じのを実装する

簡単にパララックス効果を実装できる便利ライブラリをcdnで以下のようにheadタグに記述
<script src="https://unpkg.com/scrollreveal"></script>

次にhtmlを編集。marginはスクロールするスペースを与えるため

index.html
<divclass="animation"style="margin-top: 1000px;"><imgsrc="./images/image1.jpg"></div>

次にjs

app.js
$(function(){ScrollReveal().reveal('.animation',{delay:500,duration:2000,});});

おしまい。


Viewing all articles
Browse latest Browse all 8591

Trending Articles