Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Animate.CSS Adding Scroll Bar?

I am using Animate.CSS and I am using the "hinge" effect to have an image fall off the screen. When it goes off the screen it adds a vertical scroll bar to the page. When you scroll nothing is visible. Why is this scroll bar being added and how do I keep it from being added?

Thanks!

Code:

HTML

<img id="animate" class="fear" src="/2012/images/september/fear-sign.png" />

CSS

.fear{
     position:absolute;
     left:150px;
     top:0px;
}

#animate {
    -moz-animation-delay: 5s;
    -webkit-animation-delay: 5s;
    -o-animation-delay: 5s;
    -ms-animation-delay: 5s;
    animation-delay: 5s;
}

JS

var $j = jQuery.noConflict();
   $j(document).ready(function() {
       $j('#animate').addClass('animated hinge');
           });

Here is a fiddle I created.

like image 707
L84 Avatar asked Sep 02 '12 04:09

L84


2 Answers

You can just use overflow:hidden, that will prevent the scroll bars:

html,body { overflow: hidden; }

Fiddle: http://jsfiddle.net/FafAH/2/

like image 114
McGarnagle Avatar answered Nov 08 '22 21:11

McGarnagle


Just add

body{overflow:hidden;}
like image 29
Arpit Srivastava Avatar answered Nov 08 '22 21:11

Arpit Srivastava