您好,登錄后才能下訂單哦!
這篇文章主要介紹“Vue加載中動畫組件如何使用”,在日常操作中,相信很多人在Vue加載中動畫組件如何使用問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Vue加載中動畫組件如何使用”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
(模仿ant-design加載中樣式)效果圖如下:
①創建Loading.vue組件:
<template> <div class="m-spin-dot"> <span class="u-dot-item"></span> <span class="u-dot-item"></span> <span class="u-dot-item"></span> <span class="u-dot-item"></span> </div> </template> <script> export default { name: 'Loading' } </script> <style lang="less" scoped> .m-spin-dot { // 水平垂直居中 position: relative; top: calc(50% - 18px); margin: 0 auto; width: 36px; height: 36px; transform: rotate(45deg); -ms-transform: rotate(45deg); /* Internet Explorer */ -moz-transform: rotate(45deg); /* Firefox */ -webkit-transform: rotate(45deg); /* Safari 和 Chrome */ -o-transform: rotate(45deg); /* Opera */ animation: rotate 1.2s linear infinite; -webkit-animation: rotate 1.2s linear infinite; @keyframes rotate { 100% {transform: rotate(405deg);} } .u-dot-item { // 單個圓點樣式 position: absolute; width: 10px; height: 10px; background: @mainColor; border-radius: 50%; opacity: .3; animation: spinMove 1s linear infinite alternate; -webkit-animation: spinMove 1s linear infinite alternate; @keyframes spinMove { 100% {opacity: 1;} } } .u-dot-item:first-child { top: 0; left: 0; } .u-dot-item:nth-child(2) { top: 0; right: 0; animation-delay: .4s; -webkit-animation-delay: .4s; } .u-dot-item:nth-child(3) { bottom: 0; right: 0; animation-delay: .8s; -webkit-animation-delay: .8s; } .u-dot-item:last-child { bottom: 0; left: 0; animation-delay: 1.2s; -webkit-animation-delay: 1.2s; } } </style>
②在要使用的頁面引用:
import Loading from '@/components/Loading' components: { Loading } <div :class="['m-area', {'loading': isLoading}]" <Loading /> </div> .m-area { margin: 0 auto; width: 500px; height: 400px; background: #FFFFFF; } .loading { // 加載過程背景虛化 background: #fafafa; pointer-events: none; // 屏蔽鼠標事件 }
到此,關于“Vue加載中動畫組件如何使用”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。