example_수정

by this_mong

HTML

<script src="https://code.jquery.com/jquery-1.8.3.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/waypoints/2.0.3/waypoints.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css">
<div id="blue"></div>
<div style="height:2000px"></div>
<div id="red" class="animate__animated"></div>
<div style="height:2000px"></div>
<div id="yellow"></div>

CSS

#blue {
	  width: 200px;
	  height: 100px;
	  background-color: blue;
	}
	
	#red {
	  width: 200px;
	  height: 100px;
	  background-color: red;
	}
	
	#yellow {
	  width: 200px;
	  height: 100px;
	  background-color: yellow;
	}

JavaScript

$(document).ready(function() {
  $('#red').css('opacity', 0);
  $('#red').waypoint(function() {
    $('#red').addClass('animate__fadeInLeft');
  }, {
    offset: '50%'
  });
});