<html>
<head>
<script src="https://unpkg.com/scrollreveal"></script>
</head>
<body>
<div class="animetion">
このカードはスライドインします。
</div>
</body>
</html>
.animetion{
width:200px;
height:200px;
background:#ccc;
}
var option = {
distance: '50px',
origin: 'right',
};
ScrollReveal().reveal('.animetion', option);
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.