Dieses Mal stelle ich Ihnen zwei Methoden zur Implementierung der Popup-Fensterfunktion vor. Was sind die Vorsichtsmaßnahmen für die Implementierung der Popup-Fensterfunktion? Das Folgende ist ein praktischer Fall.
Hier verwenden wir jquery, um zwei Popup-Fenstereffekte zu erzielen:
1. Einblend-Popup-Fenstereffekt:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>jQuery弹窗</title> <style> *{padding: 0;margin: 0;} .box{width: 100%;height: 100%;} .main{width: 100%;height: 100%;background-color: rgba(0,0,0,0.8);display: none;position: fixed;z-index: 1;} .mainbox{width: 800px;height: 100%;margin: 0 auto;background-color: rgba(255,255,255,0.8);padding: 20px;} .kkk{width: 100%;height: 1200px;background-color: red;} .close{color: red;cursor: pointer;} </style> <script src="http://libs.baidu.com/jquery/1.10.2/jquery.min.js"></script> <script> $(function(){ $(".btn").click(function(){ $(".main").fadeIn(); }); $(".close").click(function(){ $(".main").fadeOut(); }); }); </script> </head> <body> <p class="main"> <p class="mainbox"> <p class="close">点击关闭</p> </p> </p> <p class="box"> <p class="kkk"> <input class="btn" type="button" value="点击淡入弹窗" /> </p> </p> </body> </html>
2. Schiebe-Popup-Fenster Effekt:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title> jQuery弹窗</title> <style> *{padding: 0;margin: 0;} .box{width: 100%;height: 100%;} .main{width: 100%;height: 100%;background-color: rgba(0,0,0,0.8);display: none;position: fixed;z-index: 1;} .mainbox{width: 800px;height: 100%;margin: 0 auto;background-color: rgba(255,255,255,0.8);padding: 20px;display: none;} .kkk{width: 100%;height: 1200px;background-color: red;} .close{color: red;cursor: pointer;} </style> <script src="http://libs.baidu.com/jquery/1.10.2/jquery.min.js"></script> <script> $(function(){ $(".btn").click(function(){ $(".main").fadeIn(); $(".mainbox").delay(500).slideDown(); }); $(".close").click(function(){ $(".main").fadeOut(); }); }); </script> </head> <body> <p class="main"> <p class="mainbox"> <p class="close">点击关闭</p> </p> </p> <p class="box"> <p class="kkk"> <input class="btn" type="button" value="点击淡入弹窗" /> </p> </p> </body> </html>
Ich glaube, dass Sie die Methode beherrschen, nachdem Sie den Fall in diesem Artikel gelesen haben. Weitere spannende Informationen finden Sie in den anderen verwandten Artikeln php Chinesische Website!
Empfohlene Lektüre:
cli neues Webpack-Vorlagenprojekt
So rufen Sie Bibliotheken von Drittanbietern in Angular auf
Das obige ist der detaillierte Inhalt vonZwei Methoden zum Implementieren der Popup-Fensterfunktion. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!