


Detailed example of implementing picture sliding door animation effect based on jQuery
''Sliding door'' dynamic effect can also be called the "accordion" effect. The idea of realizing most effects is basically the same. Two methods are introduced below. One is to move the picture by changing the offset position. The other is to achieve transformation by traversing the background image and then changing the width of the image. This article mainly shares two methods to achieve the "sliding door" animation effect, which can also be called the accordion effect. Let's learn the specific implementation methods through this article. I hope it can help everyone.
Implementation method one: change the image width
html+css code
<body> <p class="box"> <ul> <!-- <li></li> --> <li></li> <li></li> <li></li> <li></li> <li></li> </ul> </p> </body> <style> *{ padding: 0; margin: 0; } .box{ /*收缩状态:缩放时每个图片的大小240px 所以总大小1200px*/ /*展开状态:当前图片宽度800px 其他图片宽度100px*/ width: 1200px; height: 500px; border:1px solid red; margin: 50px auto; } .box ul{ list-style: none; width: 1210px; } /*设置每一张图片的大小和float: left*/ .box ul li{ width: 240px; height: 500px; /*background: url(images/slidepic2.jpg);*/ float: left; } </style>
jQuery implementation
<script src = 'jquery-3.2.1.js'></script> <script> $(function(){ //1遍历每一张li 获取每个元素设置对应的图片 var lis = $('li'); lis.each(function(index, element){ //通过设置背景图片名称改变图片的显示 var imgName = "images/slidepic" + (index + 2) +".jpg "; $(element).css('background', "url('"+ imgName +"')") }); //2.展开状态 //鼠标滑入改变对应图片宽度800 其他图片(兄弟)改为100 lis.mouseenter(function(){ // console.log(this); 当前的li DOM元素 //当前的图片的宽度变为800 $(this).stop().animate({width: 800}); //其他图片的宽度变为100 $(this).siblings('li').stop().animate({width: 100}); }); //3鼠标滑出是全部显示为收缩状态 lis.mouseout(function(){ lis.stop().animate({width: 240}); }); }) </script>
jQuery streamlined code
//精简代码 $(function(){ $('li').each(function(index, element){ $(element).css('backgroud',"url('images/slidepic"+(index + 2)+.jpg')"); }).mouseenter(function(){ $(this).stop().animate({width: 800}).siblings().stop().aniamte(width: 100}); }).mouseout(function(){ $('li').stop().animate({width: 240}); }); })
Implementation method two: change the offset value of the image
html+css code
<body> <p class="picList"> <ul> <li></li> <li></li> <li></li> <li></li> <li></li> </ul> </p> </body> <style> *{ background-color: #aaa; padding: 0; margin: 0; } ul{list-style: none;} .picList{ width: 1000px; height: 400px; /*border:1px solid #eee;*/ margin:100px auto; position: relative; overflow: hidden; } /*设置定位属性 所有图片覆盖在起始位置*/ .picList ul li{ position: absolute; width: 1000px; height: 400px; top: 0; } img{ width: 100%; height: 400px; cursor: pointer; } </style>
jQuery implementation
<script src = 'jquery-3.2.1.js'></script> <script > $(function(){ //1获取所有的图片 设置初始的收缩状态left:i*200 var lis = $('li'); for(var i = 0; i < lis.length; i++){ lis.eq(i).css({left:i*200 + 'px' }); } //2.设置hover内置函数,实现鼠标滑入展开滑出收缩效果 lis.hover(function(){ var index = $(this).index(); //DOM对象转换jQuery对象 //2.1鼠标滑入后,当前图片的前面图片偏移位置减小到 j*100位置 for(var j = 0; j <= index; j++){ lis.eq(j).stop().animate({left: j*100 + 'px'},300); } //2.2鼠标滑入后,当前图片的后面图片偏移位置扩大到 500+j*100位置 for(var j = index + 1; j < lis.length; j++){ lis.eq(j).stop().animate({left: 500+j*100 + 'px'},300); } },function(){ //2.3鼠标滑出后,所有图片恢复到原来的位置 i*200 for(var i = 0; i < lis.length; i++){ lis.eq(i).stop().animate({left: i*200 + 'px'},300); } }); }) </script>
Note: During the implementation of method one, pay attention to the width and image Named settings.
Tips: The jQuery code is used here, and the javaScript code can be implemented in the same way. Just modify the traversal process and built-in function methods, and rewrite the animation function (the previous notes have an encapsulated animate function , can be directly introduced and used).
Related recommendations:
Detailed examples of jQuery automatic or manual image switching effects
Detailed examples of JS implementation of paging Browse horizontal images
jQuery implements preview function before uploading image files
The above is the detailed content of Detailed example of implementing picture sliding door animation effect based on jQuery. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

How to implement dual WeChat login on Huawei mobile phones? With the rise of social media, WeChat has become one of the indispensable communication tools in people's daily lives. However, many people may encounter a problem: logging into multiple WeChat accounts at the same time on the same mobile phone. For Huawei mobile phone users, it is not difficult to achieve dual WeChat login. This article will introduce how to achieve dual WeChat login on Huawei mobile phones. First of all, the EMUI system that comes with Huawei mobile phones provides a very convenient function - dual application opening. Through the application dual opening function, users can simultaneously

The programming language PHP is a powerful tool for web development, capable of supporting a variety of different programming logics and algorithms. Among them, implementing the Fibonacci sequence is a common and classic programming problem. In this article, we will introduce how to use the PHP programming language to implement the Fibonacci sequence, and attach specific code examples. The Fibonacci sequence is a mathematical sequence defined as follows: the first and second elements of the sequence are 1, and starting from the third element, the value of each element is equal to the sum of the previous two elements. The first few elements of the sequence

How to implement the WeChat clone function on Huawei mobile phones With the popularity of social software and people's increasing emphasis on privacy and security, the WeChat clone function has gradually become the focus of people's attention. The WeChat clone function can help users log in to multiple WeChat accounts on the same mobile phone at the same time, making it easier to manage and use. It is not difficult to implement the WeChat clone function on Huawei mobile phones. You only need to follow the following steps. Step 1: Make sure that the mobile phone system version and WeChat version meet the requirements. First, make sure that your Huawei mobile phone system version has been updated to the latest version, as well as the WeChat App.

In today's software development field, Golang (Go language), as an efficient, concise and highly concurrency programming language, is increasingly favored by developers. Its rich standard library and efficient concurrency features make it a high-profile choice in the field of game development. This article will explore how to use Golang for game development and demonstrate its powerful possibilities through specific code examples. 1. Golang’s advantages in game development. As a statically typed language, Golang is used in building large-scale game systems.

PHP Game Requirements Implementation Guide With the popularity and development of the Internet, the web game market is becoming more and more popular. Many developers hope to use the PHP language to develop their own web games, and implementing game requirements is a key step. This article will introduce how to use PHP language to implement common game requirements and provide specific code examples. 1. Create game characters In web games, game characters are a very important element. We need to define the attributes of the game character, such as name, level, experience value, etc., and provide methods to operate these

Title: jQuery Tips: Quickly modify the text of all a tags on the page In web development, we often need to modify and operate elements on the page. When using jQuery, sometimes you need to modify the text content of all a tags in the page at once, which can save time and energy. The following will introduce how to use jQuery to quickly modify the text of all a tags on the page, and give specific code examples. First, we need to introduce the jQuery library file and ensure that the following code is introduced into the page: <

Title: Use jQuery to modify the text content of all a tags. jQuery is a popular JavaScript library that is widely used to handle DOM operations. In web development, we often encounter the need to modify the text content of the link tag (a tag) on the page. This article will explain how to use jQuery to achieve this goal, and provide specific code examples. First, we need to introduce the jQuery library into the page. Add the following code in the HTML file:

I'm really sorry that I can't provide real-time programming guidance, but I can provide you with a code example to give you a better understanding of how to use PHP to implement SaaS. The following is an article within 1,500 words, titled "Using PHP to implement SaaS: A comprehensive analysis." In today's information age, SaaS (Software as a Service) has become the mainstream way for enterprises and individuals to use software. It provides a more flexible and convenient way to access software. With SaaS, users don’t need to be on-premises
