A vue component that shows a flip component.
npm i vue-flip
Include the script file, then install the component with Vue.use(VueFlip);
:
<script type="text/javascript" src="node_modules/vuejs/dist/vue.min.js"></script>
<script type="text/javascript" src="node_modules/vue-clock-simple/dist/vue-flip.min.js"></script>
<script type="text/javascript">
Vue.use(VueFlip);
</script>
import VueFlip from 'vue-flip'
Use this template:
<vue-flip>
<div slot="front">
front
</div>
<div slot="back">
back
</div>
</vue-flip>
You can active the flip on the click with:
<vue-flip active-click="true"></vue-flip>
or you can active on the hover with:
<vue-flip active-hover="true"></vue-flip>
Description | Type | Default Value | |
---|---|---|---|
active-click | flip on click | Boolean | False |
active-hover | flip on hover | Boolean | False |
height | height of the component | String | |
width | width of the component | String |