Home > Web Front-end > Vue.js > body text

How to write a carousel image in vue.js

coldplay.xixi
Release: 2020-11-30 15:20:12
Original
2890 people have browsed it

Vue.js method to write a carousel chart: first write the overall framework; then define the array of carousel charts and upload local images; finally change the status of the carousel chart by changing the custom variable nowindex .

How to write a carousel image in vue.js

The operating environment of this tutorial: windows10 system, vue2.9, this article is applicable to all brands of computers.

[Related article recommendations: vue.js]

##How to write a carousel image in vue.js:

Let’s talk about a simple idea. Use

v-if or v-show for image carousel instead of the original Js sliding, and use transition for transition effect. It can be easily implemented. Note that you can see two pictures during the sliding process, so you need to use two transitions.

(1) First write the overall framework

Copy after login

Render the number of small dots based on the array of imgArray photos, bind on to the span to light up the small dots, photo The display and hiding are displayed through the custom variable ifshow, and nowindex controls the photos corresponding to the carousel.

(2) If the array of carousel images is a local image and is not placed under a static file, please circle the path with require, otherwise the path will report an error. Not required if obtained from the backend server.

data(){
return{
imgArray: [
require('../../img/item_01.png'),
require('../../img/item_02.png'),
require('../../img/item_03.png'),
require('../../img/item_04.png')
]
}
}
Copy after login

(3) The main purpose is to change the status of the carousel image by changing the custom variable nowindex. It should be noted that two images can be seen during the sliding process, so a short timing is set in the goto function. The device allows one to be displayed and the other to be hidden, and different transition effects can be added to each.

Copy after login

Here, this simple carousel image ends.

Related free learning recommendations: JavaScript(Video)

The above is the detailed content of How to write a carousel image in vue.js. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!