12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- .list-enter-active,.list-leave-active {
- transition: all 0.5s linear 2s;
- }
- .list-enter,.list-leave-to {
- transform: translate(100px,200px);
- opacity: 0;
- }
- </style>
- </head>
- <body>
-
- <div id="app">
- <button @click="getShow">展示</button>
- <transition name="list">
- <div v-show="show">展示内容</div>
- </transition>
- </div>
- <script src="../vue初阶/vue.js"></script>
- <script>
- var app = new Vue({
- el:"#app",
- data:{
- show: true
- },
- methods: {
- getShow() {
- this.show = !this.show
- }
- },
- })
- </script>
- </body>
- </html>
|