0.0.6 • Published 10 years ago

scrollover v0.0.6

Weekly downloads
5
License
-
Repository
github
Last release
10 years ago

scrollover effects

Make CSS animations scroll activated.

Usage

<style>
@import url("animate.css");

.onscroll{
	x-animation-scroll: vertical;
}
</style>
<div style="height:50%"><div>
<h1 class="onscroll rotateIn">Scroll Over</h1>


<style>/* animate.css ( http://daneden.github.io/animate.css/ ) */
.rotateIn {
  animation-name: rotateIn;
}

@keyframes rotateIn {
  0% {
    transform-origin: center center;
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
}
</style>
<script src="scrollover.pack.js"></script>

Demo

http://prinzhorn.github.io/skrollr/


Based on skrollr stylesheets

0.0.6

10 years ago

0.0.5

10 years ago

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago