原創|使用教程|編輯:龔雪|2022-07-04 11:11:45.150|閱讀 203 次
概述:本文主要為大家介紹如何開始使用Kendo UI for Vue組件開始制作動畫,歡迎下載最新版控件體驗!
# 界面/圖表報表/文檔/IDE等千款熱門軟控件火熱銷售中 >>
相關鏈接:
KendoVue動畫使用組件為出現、進入或退出視口的元素設置動畫。
KendoVue Animation組件是Kendo UI for Vue的一部分,它通過kendo-vue-animation 包下的 NPM 分發。
Animations Package是Kendo UI for Vue的一部分,這是一個專業級的UI庫,包含90多個組件,用于構建現代且功能豐富的應用程序。
以下示例演示了 Fade、Expand、Push、Reveal 和 Slide 動畫的實際應用。
main.vue
<template> <div class="example-wrapper row"> <div class="col-xs-12 col-sm-6 example-config"> <input @click="handleSelect" id="slide" class="k-radio k-radio-md" name="type" type="radio" value="slide" :checked="true" /> <label for="slide" class="k-radio-label"> Slide </label> <br /> <input @click="handleSelect" name="type" id="push" class="k-radio k-radio-md" type="radio" value="push" /> <label for="push" class="k-radio-label"> Push </label> <br /> <input @click="handleSelect" name="type" id="expand" class="k-radio k-radio-md" type="radio" value="expand" /> <label for="expand" class="k-radio-label"> Expand </label> <br /> <input @click="handleSelect" name="type" id="fade" class="k-radio k-radio-md" type="radio" value="fade" /> <label for="fade" class="k-radio-label"> Fade </label> <br /> <input @click="handleSelect" name="type" id="zoom" class="k-radio k-radio-md" type="radio" value="zoom" /> <label for="zoom" class="k-radio-label"> Zoom </label> <br /> <input @click="handleSelect" name="type" id="reveal" class="k-radio k-radio-md" type="radio" value="reveal" /> <label for="reveal" class="k-radio-label"> Reveal </label> <br /> <kbutton type="submit" @click="animate">Animate</kbutton> </div> <div class="col-xs-12 col-sm-6 example-col"> <Expand :appear="show" v-if="animationType === 'expand'"> <div class="content"> Content </div > </Expand> <Fade :appear="show" v-else-if="animationType === 'fade'"> <div class="content"> Content </div > </Fade> <Push :appear="show" v-else-if="animationType === 'push'"> <div class="content"> Content </div > </Push> <Reveal :appear="show" v-else-if="animationType === 'reveal'"> <div class="content"> Content </div > </Reveal> <Zoom :appear="show" v-else-if="animationType === 'zoom'"> <div class="content"> Content </div > </Zoom> <Slide :appear="show" v-else-if="animationType === 'slide'"> <div class="content"> Content </div > </Slide> </div> </div> </template> <script> import './styles.css'; import { Expand, Fade, Push, Reveal, Slide, Zoom } from '@progress/kendo-vue-animation'; import { Button } from '@progress/kendo-vue-buttons'; export default { components: { 'Expand': Expand, 'Fade': Fade, 'Push': Push, 'Reveal': Reveal, 'Zoom': Zoom, 'Slide': Slide, 'kbutton': Button }, data: function () { return { animationType: 'slide', show: false }; }, methods:{ animate(){ this.show = !this.show; }, handleSelect(event) { this.animationType = event.target.value; } } } </script>
main.js
import { createApp } from 'vue' import App from './main.vue' createApp(App).mount('#app')
style.css
.content { width: 100px; padding: 10px; color: #787878; background-color: #fcf7f8; font-size: 13px; font-family: Helvetica, Arial, sans-serif; letter-spacing: 1px; text-align: center; border: 1px solid rgba(0,0,0,.05); } .k-radio-label { line-height: 1.2; margin-bottom: .5rem; }
要初始化動畫,可以:
使用 CDN
要將 Kendo UI for Vue Native Animation 組件與 CDN 一起使用,請按照以下步驟操作:
1. 引用動畫包。
<script src="http://unpkg.com/@progress/kendo-vue-animation@latest/dist/cdn/js/kendo-vue-animation.js"></script>
2. 引用其中一個Kendo UI主題來為您的組件設置樣式。
// Load the Kendo Default Theme <link rel="stylesheet" > // Load the Kendo Bootstrap Theme <link rel="stylesheet" > <link > // To load the Kendo Material Theme <link rel="stylesheet" >
使用 Webpack 初始化
1. 下載并安裝軟件包,使用 Node.js v5.0.0 或更高版本。
npm install --save @progress/kendo-vue-animation @progress/kendo-licensing
2. 安裝后,導入包模塊。
// ES2015 module syntax import { Fade } from '@progress/kendo-vue-animation'; // CommonJS format const { Fade } = require('@progress/kendo-vue-animation');
3. 您需要安裝其中一個 Kendo UI 主題來為您的組件設置樣式。
Animation 包要求您在應用程序中安裝以下對等依賴項:
Kendo UI致力于新的開發,來滿足不斷變化的需求。Kendo UI for Vue使用旨在提高性能和豐富用戶體驗的Vue組件,幫助開發人員構建下一代應用程序。它是為Vue技術框架提供可用的Kendo UI組件,以便更快地構建更好的Vue應用程序。
Telerik_KendoUI產品技術交流群:726377843 歡迎一起進群討論
本站文章除注明轉載外,均為本站原創或翻譯。歡迎任何形式的轉載,但請務必注明出處、不得修改原文相關鏈接,如果存在內容上的異議請郵件反饋至chenjj@fc6vip.cn
文章轉載自:慧都網