This article shares the specific code of the jQuery plug-in to achieve image suspension for your reference. The specific content is as follows A very common effect is that the picture will float and display after clicking. The effect is as followsCode section<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Make the picture float</title> <script src="js/jquery-3.4.1.min.js"></script> <style> * { margin: 0px; padding: 0px; user-select: none; } ul { margin-left: 20px; } ul li{ width: 200px; } li img { width: 100%; } .float{ position: fixed; top: 10%; left: 10%; width: 80%; list-style: none; z-index: 99; } .float::before{ content: ''; position: fixed; width: 100%; height: 100%; left: 0; top: 0; z-index: 98; } </style> </head> <body> <ul> <li class="li"><img src="img/1.png" /></li> <li class="li"><img src="img/2.png" /></li> <li class="li"><img src="img/3.png" /></li> <li class="li"><img src="img/4.png" /></li> </ul> </body> </html> <script> $(".li").click(function() { $(this).toggleClass('float') }) </script> Explanation of ideasIt's about changing from one state to another, giving and taking away a class. 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:
|
<<: Detailed explanation of Linux text processing command sort
>>: Centos7.5 configuration java environment installation tomcat explanation
Vim is a powerful full-screen text editor and the...
Just pass in custom parameters HTML <div id=&q...
There are the following log files in MySQL: 1: re...
The basic principle of all animations is to displ...
Table of contents 1. Create a stored function 2. ...
Table of contents Introduction Step 1 Step 2: Cre...
Code <div class="test"> <div&g...
Preface Ordinary users define crontab scheduled t...
The effect shows that two browsers simulate each ...
This article shares the data display code for Jav...
Table of contents 1. parse 1.1 Rules for intercep...
Table of contents Preface Rationale Procedure 1. ...
MySQL Performance Optimization MySQL is widely us...
Step 1: Sign a third-party trusted SSL certificat...
1. Problem description: MysqlERROR1698 (28000) so...