Skip to main content

Posts

Showing posts with the label LightBox Effect

Open div popup with a LightBox effect

Open div popup with a LightBox effect   <%@ Page Language="C#" AutoEventWireup="true" CodeFile="DivBox.aspx.cs" Inherits="DivBox" %> <!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 runat="server">   <title>Untitled Page</title>   <script type="text/javascript"> function showBox() {   var width = document.documentElement.clientWidth + document.documentElement.scrollLeft;   var layer = document.createElement('div');   layer.style.zIndex = 2;   layer.id = 'layer';   layer.style.position = 'absolute';   layer.style.top = '0px';   layer.style.left = '0px';   layer.style.height = document.documentElement.scrollHeight + 'px';  ...