Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
flexi-timeline
Advanced tools
Welcome to version 0.0.7 of Flexi Timeline, an easy to implement, and well maintained Vue.js component.
You can support this project by giving it a star, or following the author. :heart:.
Flexi Timeline vue component made by Oliver
import Vue from 'vue';
import FlexiTimeline from 'flexi-timeline';
Vue.use(FlexiTimeline);
export default {
name: 'yourComponent',
widgets: [
{
title: 'some Title 1',
subTitle: 'Some SubTitle',
description: 'Some Description',
buttonText: 'Some ButtonText'
},
{
title: 'some Title 2',
subTitle: 'Some SubTitle',
description: 'Some Description',
buttonText: 'Some ButtonText'
},
{
title: 'some Title 3',
subTitle: 'Some SubTitle',
description: 'Some Description',
buttonText: 'Some ButtonText'
},
{
title: 'some Title 4',
subTitle: 'Some SubTitle',
description: 'Some Description',
buttonText: 'Some ButtonText'
}
]
}
<flexi-timeline
:widgets="widgets"
:widgetsAos="true"
:widgetsAosType="'fade-up'"
:widgetsAosDuration="'1500'"
@button-clicked="someAction"
/>
Include the script file, then install the component with Vue.use(FlexiTimeline);
e.g.:
<script type="text/javascript" src="node_modules/vuejs/dist/vue.min.js"></script>
<script type="text/javascript" src="node_modules/flexi-timeline/dist/flexi-timeline.min.js"></script>
<script type="text/javascript">
Vue.use(FlexiTimeline);
</script>
| Name | Type | Mandatory | Description
| :----- | :------- | :-------- |-------------------------------
| widgets | Array | Yes | List of items as given the sample above
| widgetsAos | Boolean | No | By default this functionality is turned off / true for turning on Animate on Scroll Animation
| widgetsAosType | String | No | Type of the AOS. By default is fade-up animation
| widgetsAosDuration | String | No | Duration of the AOS. By default is 1500 (miliseconds)
| button-clicked | Event | No | Fired an event when the button is clicked
FAQs
A Vue.js flexi timeline component
The npm package flexi-timeline receives a total of 5 weekly downloads. As such, flexi-timeline popularity was classified as not popular.
We found that flexi-timeline demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.