Showing posts with label Css Popups. Show all posts
Showing posts with label Css Popups. Show all posts

Simple Jquery Popup on page load

This is a tutorial of very usefull and simple Jquery Popup on page load.Just copy and paste this code in your web design and enjoy this popup. You may customize this popup as according to your need.

CSS

#popup
{
 width:560px;
 height:360px;
 background:#00CC33;
 color:#fff;
 padding:20px;
 position:absolute;
 top:0%;
 left:50%;
 margin-top:-500px;
 margin-left:-250px;
}
#popup h1
{
 margin:0px;
 padding:0px;
}

Jquery



HTML



Download File Used in this example View Live Demo

Total Downloads:

Simple Popup with Css and Jquery

Css Code

.popup
{
position:absolute;
z-index:999;
width:280px;
height:280px;
top:50%;
left:50%;
margin-top:-150px;
margin-left:-130px;
background:#eee;
border:solid 1px #ccc;
text-align:center;
padding:10px;
box-shadow:0px 0px 10px #999;
display:none;
}

Jquery Code



HTML Code


Click me to open popup
Download File Used in this example