Use CSS to prevent Lightbox to realize the display of large image code without refreshing when clicking on small image Code introduction: CSS's "Lightbox" is a popular image display technology that can display a large image without refreshing when clicking a small image. The Discuz forum has this function, but it seems that it also uses JS. This one does not use JS and is completely implemented with pure CSS. It is also very convenient to use. Please note that the border and size of the image should be set according to your web page layout. This is just a demonstration and may not be exactly suitable for your web page. Code content: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>Use CSS to prevent Lightbox to realize the code of displaying large images without refreshing when clicking small images - www.webdm.cn</title> <style> .black_overlay{ display: none; position: absolute; top: 0%; left: 0%; width: 100%; height: 100%; background-color: white; z-index:1001; -moz-opacity: 0.8; opacity:.80; filter: alpha(opacity=80); } .white_content { display: none; position: absolute; top: 25%; left: 25%; width: 46%; height: 50%; padding: 13px; border: 16px solid orange; background-color: white; z-index:1002; overflow:auto; } .codefans_net { width:420px; height:210px; background-color:#efefef; color:#666; border-width:1px; border-color:#999; border-style:solid; margin:6px; padding:6px; font-Size:14px; line-height:200%; float:midden; } </style> </head> <body> <p class="codefans_net">CSS's "Lightbox" is a popular image display technology that can realize the function of displaying a large image without refreshing when clicking a small image. If you don't quite understand this effect, you can click on the image below and you will understand it! <br> <a href = "javascript:void(0)" onclick = "document.getElementById ('light').style.display='block';document.getElementById('fade').style.display='block'"><img border="0" src="upload/2022/web/demoimgsmall.jpg" width="100" height="62"></a> <div id="light" class="white_content"> <a target="_blank" href="/"> <img border="0" src="upload/2022/web/demoimg.jpg" width="350" height="216"></a> <a href = "javascript:void(0)" onclick = "document.getElementById('light').style.display='none';document.getElementById ('fade').style.display='none'">Close</a></div> <div id="fade" class="black_overlay"></div></p> </body> </html> <br /> <p><a href="http://www.webdm.cn">Web Code Station</a> - The most professional web code download! </p> Summarize The above is the code I introduced to you using CSS anti-Lightbox to display the large image without refreshing when clicking the small image. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website! |
<<: The design process of Alibaba's Mid-Autumn Festival logo combined with the website
>>: Summary of Spring Boot Docker packaging tools
Just 15 lines of CSS to crash your iPhone Securit...
Pure front-end implementation:切片上傳斷點續傳.斷點續傳needs ...
Add a DOCTYPE to the page Since different browser...
Related articles: 9 practical tips for creating we...
Demand scenario: The boss asked me to use the cra...
In the migration of Oracle database to MySQL data...
Preface This article contains 1. Several major co...
Table of contents Written in front Environment de...
1. The vertical-align property achieves the follo...
IIS7 Download the HTTP Rewrite module from Micros...
concept If the index contains all the data that m...
Previously, react.forwardRef could not be applied...
Preface Believe me, as long as you remember the 7...
1. Background During the server development proce...
This article example shares the specific code of ...