Html + javascript Implementation of the ready-to-submit pop-up dialog box effects _ javascript tips-js tutorial

Source: Internet
Author: User
This article introduces how to use html + javascript to implement the drag-and-drop pop-up layer, dialog box, and submission. The specific code is as follows. If you are interested, refer to it and hope to help you. The Code is as follows:





JAVASCRIPT pop-up layer


Script
Function showPopup () {// pop-up layer
Var objDiv = document. getElementById ("popDiv ");
ObjDiv. style. top = "50px"; // sets the distance between the pop-up layer and the upper boundary.
ObjDiv. style. left = "200px"; // you can specify the distance between the pop-up layer and the left boundary.
ObjDiv. style. width = "300px"; // you can specify the width of the pop-up layer.
ObjDiv. style. height = "200px"; // you can specify the height of the pop-up layer.
// ObjDiv. style. display = "block ";
ObjDiv. style. visibility = "visible ";
}
Function hidePopup () {// close the Layer
Var objDiv = document. getElementById ("popDiv ");
ObjDiv. style. visibility = "hidden ";
}
Script




Modify href = "#" onclick = "hidePopup ();"> disable










Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.