<div class="mouse_scroll">
<div class="mouse">
<div class="wheel"></div>
</div>
<div>
<span class="m_scroll_arrows unu"></span>
<span class="m_scroll_arrows doi"></span>
<span class="m_scroll_arrows trei"></span>
</div>
</div>
body {
background: #333;
}
*, *:before, *:after {
box-sizing: border-box; box-sizing: border-box; box-sizing: border-box;
}
.mouse_scroll {
display: block;
margin: 0 auto;
width: 24px;
height: 100px;
margin-top: 125px;
}
.m_scroll_arrows
{
display: block;
width: 5px;
height: 5px;
transform: rotate(45deg); /* IE 9 */
transform: rotate(45deg); /* Chrome, Safari, Opera */
transform: rotate(45deg);
border-right: 2px solid white;
border-bottom: 2px solid white;
margin: 0 0 3px 4px;
width: 16px;
height: 16px;
}
.unu
{
margin-top: 1px;
}
.unu, .doi, .trei
{
animation: mouse-scroll 1s infinite;
animation: mouse-scroll 1s infinite;
animation: mouse-scroll 1s infinite;
}
.unu
{
animation-delay: .1s;
animation-delay: .1s;
animation-direction: alternate;
animation-direction: alternate;
animation-delay: alternate;
}
.doi
{
animation-delay: .2s;
animation-delay: .2s;
animation-direction: alternate;
animation-delay: .2s;
animation-direction: alternate;
margin-top: -6px;
}
.trei
{
animation-delay: .3s;
animation-delay: .3s;
animation-direction: alternate;
animation-delay: .3s;
animation-direction: alternate;
margin-top: -6px;
}
.mouse {
height: 42px;
width: 24px;
border-radius: 14px;
transform: none;
border: 2px solid white;
top: 170px;
}
.wheel {
height: 5px;
width: 2px;
display: block;
margin: 5px auto;
background: white;
position: relative;
height: 4px;
width: 4px;
border: 2px solid #fff;
border-radius: 8px;
border-radius: 8px;
}
.wheel {
animation: mouse-wheel 0.6s linear infinite;
animation: mouse-wheel 0.6s linear infinite;
animation: mouse-wheel 0.6s linear infinite;
}
@-webkit-keyframes mouse-wheel{
0% {
opacity: 1;
transform: translateY(0);
transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
transform: translateY(6px);
transform: translateY(6px);
transform: translateY(6px);
}
}
@-moz-keyframes mouse-wheel {
0% { top: 1px; }
25% { top: 2px; }
50% { top: 3px;}
75% { top: 2px;}
100% { top: 1px;}
}
@-o-keyframes mouse-wheel {
0% { top: 1px; }
25% { top: 2px; }
50% { top: 3px;}
75% { top: 2px;}
100% { top: 1px;}
}
@keyframes mouse-wheel {
0% { top: 1px; }
25% { top: 2px; }
50% { top: 3px;}
75% { top: 2px;}
100% { top: 1px;}
}
@-webkit-keyframes mouse-scroll {
0% { opacity: 0;}
50% { opacity: .5;}
100% { opacity: 1;}
}
@-moz-keyframes mouse-scroll {
0% { opacity: 0; }
50% { opacity: .5; }
100% { opacity: 1; }
}
@-o-keyframes mouse-scroll {
0% { opacity: 0; }
50% { opacity: .5; }
100% { opacity: 1; }
}
@keyframes mouse-scroll {
0% { opacity: 0; }
50% { opacity: .5; }
100% { opacity: 1; }
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.