7

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.

3 Answers 3

5

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

html,body { overflow: hidden; }

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

Sign up to request clarification or add additional context in comments.

Comments

1

Just add

body{overflow:hidden;}

Comments

-1

You can set overflow-y to hidden to prevent vertical scrollbars and overflow-x to hidden to prevent horizontal scrollbars.

html, body{
    overflow-y: hidden;
}

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.