Vue implements interface sliding effect

Vue implements interface sliding effect

This article example shares the specific code of Vue to achieve the interface sliding effect for your reference. The specific content is as follows

Project requirements + renderings

1. Project requirements

[Click the bottom navigation bar and there will be a sliding effect when switching pages]

2. Rendering

Code + key code analysis

1. Code

Botnav.vue navigation bar interface

<template>
    <div>
        <transition :name="transitionName">
            <router-view class="Router"></router-view>
        </transition>
 <template>    
  
 <script>    
 export default {
  data () {
    return {
     // Slide from left to right transitionName:'slide-right',    
     } 
</script>   

<style lang="stylus">  
      .Router
            absolute position
            width 100%
            transition all 0.8s ease 
        .slide-left-enter, .slide-right-leave-active    
            opacity 0
            -webkit-transform translate(100%,0)
            transform translate(100%,0)
        .slide-left-leave-active, .slide-right-enter
            opacity 0
            -webkit-transform translate(-100%,0)
            transform translate(-100%,0) 
</style>

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:
  • Vue uses Split to encapsulate the universal drag and slide partition panel component
  • The problem and solution of using Vue-scroller page input box not triggering sliding
  • Vue implements left and right linkage sliding pages based on better-scroll
  • Vue implements page switching sliding effect
  • Solve the problem of Vue interface sliding and clicking events on Apple phones
  • How to use fingers to slide between Vue routing pages
  • Implementing left and right sliding effect of page switching based on Vue

<<:  How to enable JMX monitoring through Tomcat

>>:  Detailed explanation of MySQL cursor concepts and usage

Recommend

Zen Coding Easy and fast HTML writing

Zen Coding It is a text editor plugin. In a text ...

Detailed explanation of the background-position percentage principle

When I was helping someone adjust the code today,...

Summary of CSS usage tips

Recently, I started upgrading my blog. In the proc...

The process of using vxe-table to make editable tables in vue

There is a table in the project that needs to be ...

Summary of ten Linux command aliases that can improve efficiency

Preface Engineers working in the Linux environmen...

The difference between where and on in MySQL and when to use them

When I was writing join table queries before, I a...

CentOS7.x uninstall and install MySQL5.7 operation process and encoding format modification method

1. Uninstalling MySQL 5.7 1.1查看yum是否安裝過mysql cd y...

Solution to mysql error when modifying sql_mode

Table of contents A murder caused by ERR 1067 The...

Discussion on CSS style priority and cascading order

In general : [1 important flag] > [4 special fl...

Record a pitfall of MySQL update statement update

background Recently, I executed a DML statement d...

How to view server hardware information in Linux

Hi, everyone; today is Double 12, have you done a...

How to use Vue3 to achieve a magnifying glass effect example

Table of contents Preface 1. The significance of ...

MySQL uses the Partition function to implement horizontal partitioning strategy

Table of contents 1 Review 2 Five strategies for ...

Classification of web page color properties

Classification of color properties Any color can ...