Transition document address defines a background pop-up layer to achieve fade-in and fade-out effects <template> <div> <button @click="show = !show"> Toggle </button> <transition name="fadeBg"> <div class="bg" v-if="show">hello</div> </transition> </div> </template> <script> export default { data: () => ({ show: true }), }; </script> <style lang="less" scoped> .fadeBg-enter-active, .fadeBg-leave-active { transition: opacity 0.3s ease; } .fadeBg-enter, .fadeBg-leave-to { opacity: 0; } .bg { position: fixed; top: 20px; left: 0; z-index: 105; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); } </style> This is the end of this article about the example code of using transition component animation effect in Vue. For more relevant Vue transition component animation content, please search previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: A brief discussion on docker-compose network settings
>>: MySQL5.6.31 winx64.zip installation and configuration tutorial
Most of this article refers to other tutorials on...
Table of contents 1. concat() 2. join() 3. push()...
Table of contents 【Common commands】 [Summary of c...
BFC BFC: Block Formatting Context BFC layout rule...
Purpose: Nested use of MySQL aggregate functions ...
The complete syntax of the select statement is: S...
This article example shares the specific code of ...
This article introduces some issues about HTML ta...
I personally feel that the development framework ...
HTML tag: superscript In HTML, the <sup> tag...
Table of contents Case 1: Case 2: Case 3: To summ...
Download CentOS7 The image I downloaded is CentOS...
Preface Recently, I have been busy writing a smal...
This article mainly introduces the example of rea...
1. Basics of Linux Firewall The Linux firewall sy...