Wednesday, September 17, 2025
HomeLanguagesJavascriptscript.aculo.us SlideUp Effect

script.aculo.us SlideUp Effect

In this article, we will demonstrate the visual effect of SlideUp option by using JavaScript library called script.aculo.us having smooth transition from one to another. We can adjust the duration of the effect as well.

Syntax :

Effect.SlideUp('id_of_element');

or

Effect.SlideUp('id_of_element', { duration: 3.0 });

Note: To use this library, we are supposed to download the library and then use it in our programs. And to do so you can follow the this link http://script.aculo.us/downloads.

Approach: To demonstrate the use of this function, we have written a small piece of code. We have written a small JavaScript function named ShowEffect method which uses SlideUp method of this library. By clicking on Click me to SlideUp the image!, you will see the effect clearly.

Example: To see the effect, first install the library and then open this program in local environment.

HTML




<!DOCTYPE html>
<html>
  
<head>
  
    <script type="text/javascript" 
        src="prototype.js">
    </script>
  
    <script type="text/javascript" 
        src="scriptaculous.js?load = effects">
    </script>
  
    <script type="text/javascript">
  
        function ShowEffect(element) {
            new Effect.SlideUp(element,
                { duration: 3.0 });
        }
        function displayImage(element) {
            new Effect.Appear(element, 
            { duration: 1, from: 1.1, to: 1.2 });
        }
    </script>
</head>
  
<body>
    <div onclick="displayImage('hideshow')">
        Click me to SlideUp the image!
    </div>
    <br />
  
    <div id="hideshow" onclick="ShowEffect(this);">
        <img src="GEEKSIMAGES/neveropen1.PNG" alt="" /><br />
        Image to SlideUp
    </div>
</body>
  
</html>    


Output:

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
RELATED ARTICLES

Most Popular

Dominic
32299 POSTS0 COMMENTS
Milvus
84 POSTS0 COMMENTS
Nango Kala
6660 POSTS0 COMMENTS
Nicole Veronica
11833 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11895 POSTS0 COMMENTS
Shaida Kate Naidoo
6779 POSTS0 COMMENTS
Ted Musemwa
7050 POSTS0 COMMENTS
Thapelo Manthata
6735 POSTS0 COMMENTS
Umr Jansen
6741 POSTS0 COMMENTS