https://www.delac.io/wow/docs.html
다운로드
https://github.com/matthieua/WOW
CSS, JS Link
<link rel="stylesheet" href="css/animate.css">
<script src="js/wow.min.js"></script>
<script>
new WOW().init();
</script>
Pick an animation style in Animate.css , then add the CSS class to the HTML element
<div class="wow bounceInUp">
Content to Reveal Here
</div>
Advanced Options
<section class="wow slideInLeft" data-wow-duration="2s" data-wow-delay="5s">
</section>
<section class="wow slideInRight" data-wow-offset="10" data-wow-iteration="10">
</section>
Customize Settings
wow = new WOW(
{
boxClass: 'wow', // default
animateClass: 'animated', // default
offset: 0, // default
mobile: true, // default
live: true // default
}
)
wow.init();
'IT > Develop' 카테고리의 다른 글
Animate.css (0) | 2019.09.20 |
---|---|
Conversational Form - Turn your content into conversations (0) | 2019.09.18 |
slick slider 플러그인 사용법 / 반응형 슬라이더 (0) | 2019.09.06 |