This article example shares the specific code of JavaScript to implement the login form for your reference. The specific content is as follows Idea : Put the login window outside the interface, and then change it to the interface through the function in the script! <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>My Login Form</title> <style> .loginDiv{ /*Set the appearance of the login box*/ border: solid red 3px; border-radius: 10px; width: 350px; height: 250px; background-color: skyblue; /*Set the location of the login box*/ position: absolute; top: -300px; } button{ /*Set the button style*/ border-radius: 3px; } #closeDiv{ /*Set the close button position*/ position: relative; top: -160px; left: 305px; } </style> </head> <body> <a href="javaScript:login()" >Login window</a> <div class="loginDiv" id="loginDiv"> <h2 align="center">Login window</h2> <table align="center"> <tr> <th>Username:</th> <th><input type="text"></th> </tr> <tr> <th>Password:</th> <th><input type="password"></th> </tr> <tr> <th colspan="2"> <button>Login</button>  <button type="reset">Reset</button> </th> </tr> </table> <div id="closeDiv"><a href="javaScript:close()" >[Close]</a></div> </div> <script> function login() { //Get the login object let loginDivObj = document.getElementById("loginDiv"); loginDivObj.style.top="100px"; //Set transition properties, see transitionProperty: Specifies the name of the CSS property to which the transition effect is applied. // Reference 2: transitionDuration: specifies how many seconds or milliseconds it takes to complete the transition effect. // Parameter 3: transitionTimingFunction: specifies the speed curve of the transition effect. // Reference 4: transitionDelay: defines when the transition effect starts. loginDivObj.style.transition="top 600ms linear 500ms"; } function close() { //Get the login object let loginDivObj = document.getElementById("loginDiv"); loginDivObj.style.top="-300px"; } </script> </body> </html> The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: How to improve MySQL Limit query performance
>>: The correspondence between Tomcat and JDK versions and the features of each Tomcat version
Table of contents Use of CURRENT_TIMESTAMP timest...
To beautify the table, you can set different bord...
The effect shows that two browsers simulate each ...
Table of contents 1. Project environment: 2: DNS ...
In the process of writing the project page, I enc...
FireFox is a commonly used browser with many exte...
Table of contents Overview Example 1) Freeze Obje...
Table of contents Preface 1. ss command 2. Overal...
Table of contents 1. What is front-end state mana...
Table of contents 1. Basic use of axio 2. How to ...
The purpose of using HTML to mark up content is t...
Introduction In a production environment, in orde...
Since its launch in 2009, flex has been supported...
Introduction Linux is a system that can automatic...
The legend component is a commonly used component...