All Projects → good-father → Vue Transition.css

good-father / Vue Transition.css

Licence: mit
vue-transition animation

Projects that are alternatives of or similar to Vue Transition.css

Page Transitions Travelapp
Travel App, Native-like Page Transitions
Stars: ✭ 134 (-2.19%)
Mutual labels:  page-transitions
Page Transitions Travelapp
Travel App, Native-like Page Transitions
Stars: ✭ 1,637 (+1094.89%)
Mutual labels:  page-transitions
Turbolinks Animate
Rich & adaptive animations for apps using Turbolinks
Stars: ✭ 120 (-12.41%)
Mutual labels:  page-transitions
Gatsby Using Page Transitions
Gatsby example site using page transitions
Stars: ✭ 88 (-35.77%)
Mutual labels:  page-transitions
Backbone Responsive Css3 Page Transitions
CSS3 hardware accelerated page transitions optimised for fluid layouts
Stars: ✭ 34 (-75.18%)
Mutual labels:  page-transitions
Push State
Turn static web sites into dynamic web apps.
Stars: ✭ 16 (-88.32%)
Mutual labels:  page-transitions
Nuxt Type
Small demo showing custom page animations with a fake typography site
Stars: ✭ 544 (+297.08%)
Mutual labels:  page-transitions
Next Page Transitions
Simple and customizable page transitions for Next.js apps
Stars: ✭ 464 (+238.69%)
Mutual labels:  page-transitions
React Tiger Transition
Full page transitions with react-router.
Stars: ✭ 431 (+214.6%)
Mutual labels:  page-transitions
Nextjs Page Transitions
Travel App, Native-like Page Transitions (:atom: with React & Next.js)
Stars: ✭ 424 (+209.49%)
Mutual labels:  page-transitions
Lookforward
A small library that helps you to create smooth transitions between pages with the easiest way
Stars: ✭ 298 (+117.52%)
Mutual labels:  page-transitions
Swup
🎉 Complete, flexible, extensible and easy to use page transition library for your static web.
Stars: ✭ 3,190 (+2228.47%)
Mutual labels:  page-transitions
ionic-modal-custom-transitions
Add Custom Transitions to Ionic Modals.
Stars: ✭ 22 (-83.94%)
Mutual labels:  page-transitions
saber-theme-tailsaw
A Saber theme for blogging, based on Jigsaw's Blog Template.
Stars: ✭ 53 (-61.31%)
Mutual labels:  page-transitions
nuxt-gsap-module
GSAP module for Nuxt.js
Stars: ✭ 183 (+33.58%)
Mutual labels:  page-transitions
Swupjs
[DEPRECATED] Complete, flexible, easy to use page transition library - swup extension.
Stars: ✭ 156 (+13.87%)
Mutual labels:  page-transitions
React Page Transition
A React component that makes it easy to use the page transitions from the Codedrops page transitions demo with React
Stars: ✭ 145 (+5.84%)
Mutual labels:  page-transitions

vue-transition.css Build Status Github Release

vue-transition动画库

安装

npm 安装

npm install vue-transition.css --save

CDN 可以通过下载vue-transition.min.css,在页面上引入 css 文件即可开始使用。

<!-- 引入样式 -->
<link rel="stylesheet" href="vue-transition.min.css">

使用

// 入口页,如app.vue
<template>
  <div class="app">
    ...
    // 例如使用 move-right-to-left 动画
    <transition name="move-right-to-left">
      <router-view class="app-router-view"></router-view>
    </transition>
    ...
  </div>
</template>

<script>
  // 引入vue-transition.css
  import 'vue-transition.css'
  ...
</script>

<style>
  // 给页面加上以下样式,动画才能生效
  html,
  body,
  .app {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .app {
    background-color: #000;
    perspective: 1200px;
  }

  .app .app-router-view {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
    transform-style: preserve-3d;
    visibility: visible;
  }
</style>

查看所有动画

欢迎留言或star,如果对demo中的美女不满意,可以加qq(1024371442)私聊😄

License

vue-transition.css is licensed under the MIT license.(http://opensource.org/licenses/MIT)

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].