HTML
  Home arrow HTML arrow Page 2 - Custom Buttons in HTML
Dev Articles Forums 
ADO.NET  
Apache  
ASP  
ASP.NET  
C#  
C++  
ColdFusion  
COM/COM+  
Delphi-Kylix  
Design Usability  
Development Cycles  
DHTML  
Embedded Tools  
Flash  
Graphic Design  
HTML  
IIS  
Interviews  
Java  
JavaScript  
MySQL  
Oracle  
Photoshop  
PHP  
Reviews  
Ruby-on-Rails  
SQL  
SQL Server  
Style Sheets  
VB.Net  
Visual Basic  
Web Authoring  
Web Services  
Web Standards  
XML  
Mobile Linux 
App Generation ROI 
IBM® developerWorks 
Weekly Newsletter
 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
HTML

Custom Buttons in HTML
By: Chrysanthus Forcha
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 4 stars4 stars4 stars4 stars4 stars / 13
    2008-05-07

    Table of Contents:
  • Custom Buttons in HTML
  • Colored Button
  • Colored Button continued
  • Button with Background Image

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
    ADVERTISEMENT


    Custom Buttons in HTML - Colored Button


    (Page 2 of 4 )


    Colored Button

    Let us create a color button whose (main) color is MediumOrchid represented by rgb(186,85,211) in CSS. The dark borders will be purple represented by rgb(128,0,128) in CSS. The light borders will be violet represented by rgb(238,130,238) in CSS. The color (foreground color) of the button's text will be LightGoldenRodYellow represented by rgb(250,250,226) in CSS. The text of the button will be bolded.

    To make sure the borders appear whether or not the button is pressed, we give the border-style the value of solid. The background color is MediumOrchid; this is the color you see for the button.

    The Un-Pressed State

    In this state, which is the normal state of a button, the left and top borders have the violet color, and the right and bottom borders have the purple color. So the syntax for the button element in the CSS is:


    button {background-color:rgb(186,85,211);

    border-style:solid;

    border-left-color:rgb(238,130,238);

    border-top-color:rgb(238,130,238);

    border-right-color:rgb(128,0,128);

    border-bottom-color:rgb(128,0,128);

    color:rgb(250,250,226)

    }


    The Pressed State

    In this state, the left and top borders have the purple color, and the right and bottom borders have the violet color. We shall use JavaScript to change the properties of the border. There are some events we have to take into consideration here.

    The onmousedown event

    The onmousedown event occurs when the pointing device button is pressed over an element.

    The onmouseup event

    The onmouseup event occurs when the pointing device button is released over an element.


    So when the onmousedown event is triggered the following JavaScript function is called:


    function showPressed()

    {

    document.getElementById("B1").style.borderLeftColor = "rgb(128,0,128)";

    document.getElementById("B1").style.borderTopColor = "rgb(128,0,128)";

    document.getElementById("B1").style.borderRightColor = "rgb(238,130,238)";

    document.getElementById("B1").style.borderBottomColor = "rgb(238,130,238)";

    }


    This function is called showPress(). It changes the border colors so that the button will appear to be pressed. For this function the button ID is “B1.”


    When the onmouseup event is triggered the following JavaScript function, which brings back the button’s original appearance, is called:


    function unPressed()

    {

    document.getElementById("B1").style.borderLeftColor = "rgb(238,130,238)";

    document.getElementById("B1").style.borderTopColor = "rgb(238,130,238)";

    document.getElementById("B1").style.borderRightColor = "rgb(128,0,128)";

    document.getElementById("B1").style.borderBottomColor = "rgb(128,0,128)";

    }


    The name of the function is unPressed().

    More HTML Articles
    More By Chrysanthus Forcha


       · It is cool.Chrys
     

    HTML ARTICLES

    - Comparing Browser Response to Active Client ...
    - Testing Browser Response to Active Client Pa...
    - Active Client Pages: Completing the Code for...
    - ACP and Browsers: Setting up an Example
    - How Browsers Respond to Active Client Pages
    - Completing a Tree with Active Client Pages
    - HTML Form Verification and ACP
    - Building an ACP Tree
    - Completing an ACP 3D HTML Table Image Gallery
    - Building an ACP 3D HTML Table Image Gallery
    - A Multiple Page Image Gallery with Active Cl...
    - Building an Image Gallery with Active Client...
    - Concluding a Menu for All Browsers
    - A Vertical Menu for All Browsers
    - Downloading Long HTML Pages with ACP







    © 2003-2009 by Developer Shed. All rights reserved. DS Cluster 3 Hosted by Hostway
    Stay green...Green IT