Monday 22 April 2013

To Display a Login form in Lightbox using Css & Jquery

In this article lets see how the lightbox works for a login form using a simple jquery.Mostly in all websites there will be a login form to enter into the websites.The trendy thing is if we use lightbox concept for login it will be looking better.Lets see the live demo,

Live Demo:


Login Form
UserName:
Password:


Download full coding :   Loginlightbox


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>Login LighBox Effect Example from Developer code</title>
    <style type="text/css">
    
        .label
        {
            font-family: Verdana;
            font-size: medium;
            font-weight: bold;
            color: #000000;
        }
        .click
        {
            font-family: Verdana;
            font-size: medium;
            font-weight: bold;
            color: #000000;
            padding:300px;
        }
    
        .Title
        {
            font-family: Verdana;
            font-size: large;
            font-weight: bold;
            color: #FF9900;
        }
    
        #Button1
        {
            width: 64px;
             font-family: Verdana;
            font-size: medium;
            font-weight: bold;
            background-color:Teal;
            color:#FFF;
        }
      .black_overlay{
            display: none;
            position: absolute;
            top: 0%;
            left: 0%;
            width: 100%;
            height: 100%;
            background-color: black;
            z-index:1001;
            -moz-opacity: 0.8;
            opacity:.80;
            filter: alpha(opacity=80);
        }
        .white_content {
            display: none;
            position: absolute;
            top: 25%;
            left: 25%;
            width: 30%;
            height: 30%;
            padding: 16px;
            box-shadow:inset 0 0 4px 4px #999;
            background-color: white;
            z-index:1002;
            overflow: auto;
            border-radius:10px;
            margin-left:8%;
        }
        
    </style>
    <script type="text/javascript" language="javascript">
    function createlightbox()
    {
        document.getElementById('light').style.display='block';
        document.getElementById('fade').style.display='block'
    }
    function closelightbox()
    {
        document.getElementById('light').style.display='none';
        document.getElementById('fade').style.display='none'
    }
    </script>
</head>
<body>
<table width="100%" align="left">

<tr><td>
<p class="click"><a href = "javascript:void(0)" onclick = "createlightbox()">click here  Login Form </a></p>

<div id="light" class="white_content" > 
<a href = "javascript:void(0)" onclick = "closelightbox()" style="float:right">
<img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjpzz8MrW4Dhm5pVhilVQ7HQCbxmTVm1JHNYBitqs0c9Vg58-Pyfhc6dRhxy8PqG2lCH80X3oMUx80ZeBLqnIfHnStaY0Cf7IkgYiGO83Mc-k4WMMU9ZdNnG8WvIABKgMyq9rToWzakzOzP/s1600/icon_cancel.gif" alt="" /></a>      
    <table align="center" cellpadding="5" cellspacing="5" >
    <tr>
    <td colspan="2" class="Title" align="center">Login Form</td>
    </tr>
        <tr>
            <td class="label">              
                UserName:</td>
            <td align="center">
                
                <input id="Text1" type="text" /></td>
        </tr>
       <tr>
            <td class="label">              
                Password:</td>
            <td align="center">
                
                <input id="Text2" type="password" /></td>
        </tr>
        <tr>
            <td>              
               
            
              <input id="Button1" type="button" value="Login" /></td></tr></table>
           </div></td></tr>
     
    </table>   

 <div id="fade" class="black_overlay"></div>
</body>
</html>

2 comments: