Animating Buttons with JavaScript : JavaScript DHTML examples (example source code) » Form Control » Button

JavaScript DHTML
C++
Java Products
Java Articles
JavaScript DHTML Home  »   Form Control   » [  Button  ]   
 



Animating Buttons with JavaScript

Please note that some example is only working under IE or Firefox.


/*
JavaScript Unleashed, Third Edition
by Richard Wagner and R. Allen Wyke 

ISBN: 067231763X
Publisher Sams CopyRight 2000

*/
<html>
<head>

  <title>JavaScript Unleashed</title>
  <script type="text/javascript" language="JavaScript1.1">
  <!--
    // Define image objects
    var prevBtnOff = new Image(4252);
    prevBtnOff.src = "http://www.java2s.com/style/logo.png";
    var prevBtnOn =  new Image(4252);
    prevBtnOn.src = "http://www.java2s.com/style/logoRed.png";
    var nextBtnOff = new Image(4252);
    nextBtnOff.src = "http://www.java2s.com/style/logo.png";
    var nextBtnOn =  new Image(4252);
    nextBtnOn.src = "http://www.java2s.com/style/logoRed.png";

    // Changes image being displayed.
    function highlightButton(placeholder, imageObject) {
      document.images[placeholder].src = eval(imageObject + ".src")
    }
  //-->
  </script>
</head>
<body background="./aiback.gif">
  <center>
    <a href="javascript:history.back()"
       onmouseover="highlightButton('Prev','prevBtnOn');
                    window.status='Previous';
                    return true;"
       onmouseout="highlightButton('Prev','prevBtnOff');
                   window.status='';
                   return true;">
      <img src="./prev_off.gif" border="0" width="52" height="42" name="Prev">
    </a>
    <a href="javascript:history.forward()"
       onmouseover="highlightButton('Next','nextBtnOn');
                    window.status='Next';
                    return true;"
       onmouseout="highlightButton('Next','nextBtnOff');
                    window.status='';
                    return true;">
      <img src="./next_off.gif" border="0" width="52" height="42" name="Next">
    </a>

  </center>
</body>
</html>
Related examples in the same category
1.  Using the onSubmit Event to Cancel a Form Submission (Internet Explorer)
2.   HTML Form with onClick Code
3.  Button set Textfield value
4.  Button click to display dialog
5.  Button Redirect
6.  Create a button
7.  Button to display the name of the form
8.  Button to display the names of all the elements in a form
9.   Roll over one of our images.
10.  Button and Check Box Event Handling
11.  JavaScript Button action event
12.  Three Buttons Sharing One Function
13.   Running a Script from User Action
14.  Methods and Properties of the Button Object
15.  Putting Script Directly in the onclick Event Handler
16.  Toggle button with hand cursor and image
17.  Button Click action
18.  Button On Click Action
19.  Button timeout








Home| Contact Us
Copyright 2003 - 04 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.