Marquee component for Vue & React
Online Demo
Usage
Use with Vue
<template>
<v-marquee style="width: 300px">
Parcel can take any type of file as an entry point, but a HTML or JavaScript
file is a good place to start. If you link your main JavaScript file in the
HTML using a relative path, Parcel will also process it for you, and replace
the reference with a URL to the output file.
</v-marquee>
</template>
<script>
import Marquee from "@axetroy/marquee/vue";
export default {
components: {
"v-marquee": Marquee
}
};
</script>
Use in React
import React from "react";
import Marquee from "@axetroy/marquee/react";
class App extends React.Component {
render() {
return (
<Marquee style={{ width: 300 }}>
Parcel can take any type of file as an entry point, but a HTML or
JavaScript file is a good place to start. If you link your main
JavaScript file in the HTML using a relative path, Parcel will also
process it for you, and replace the reference with a URL to the output
file.
</Marquee>
);
}
}
License
The MIT License