diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..a547bf3
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,24 @@
+# Logs
+logs
+*.log
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+pnpm-debug.log*
+lerna-debug.log*
+
+node_modules
+dist
+dist-ssr
+*.local
+
+# Editor directories and files
+.vscode/*
+!.vscode/extensions.json
+.idea
+.DS_Store
+*.suo
+*.ntvs*
+*.njsproj
+*.sln
+*.sw?
diff --git a/LICENSE.md b/LICENSE.md
new file mode 100644
index 0000000..7046447
--- /dev/null
+++ b/LICENSE.md
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) 2022 Oliver Trajceski
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
\ No newline at end of file
diff --git a/LICENSE.txt b/LICENSE.txt
new file mode 100644
index 0000000..7046447
--- /dev/null
+++ b/LICENSE.txt
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) 2022 Oliver Trajceski
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
\ No newline at end of file
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..f16db71
--- /dev/null
+++ b/README.md
@@ -0,0 +1,342 @@
+[![Contributors][contributors-shield]][contributors-url]
+[![Downloads][downloads-shield]][downloads-url]
+[![Issues][issues-shield]][issues-url]
+[![MIT License][license-shield]][license-url]
+[![LinkedIn][linkedin-shield]][linkedin-url]
+
+
+
+
+
+
+## About The Vue3 Marquee Slider
+
+[![Product Name Screen Shot][product-screenshot]](https://vue-marquee.com/)
+
+vue3-marquee-slider is a simple and easy-to-use component for Vue that allows you to create customizable marquees with just a few lines of code. It is a great option if you are looking for a lightweight and easy-to-use marquee component that works out of the box with Vue 3.
+
+The component allows you to create a responsive, customizable, mobile-friendly carousel/slider to display images, text, and custom HTML content. It supports various features such as usage with images, text and cards, setting the width and auto width of the images, setting the speed and space between items, and setting the direction of the sliding items to be reversed.
+
+## Why to use Vue3 Marquee Slider
+
+- ๐ It is easy to use and set up within all vue.js projects.
+- ๐ It is responsive and adapts to different screen sizes.
+- ๐ It allows for custom styling and customization options.
+- ๐ It has a smooth and fluid animation.
+- ๐ It can handle large amounts of data and images.
+- ๐ It is lightweight and performs well.
+- ๐ It is open source and free to use.
+
+
+## Getting Started
+
+With vue3-marquee-slider, you can easily create scrolling text or images that automatically move across the screen.
+You can control the speed, direction, and even pause or resume the marquee with simple props.
+
+### Installation and Global Usage Vue3
+
+To use vue3-marquee-slider in your Vue project, simply install it with npm or yarn:
+* npm
+ ```sh
+ npm i vue3-marquee-slider@latest
+ ```
+
+* yarn
+ ```sh
+ yarn add vue3-marquee-slider@latest
+ ```
+
+In order to register a component globally, you would typically need to import the component in your main application file. This would allow you to use the component in any of your Vue templates, without having to import it separately in each individual component.
+
+```js
+import { createApp } from 'vue'
+import Vue3MarqueeSlider from 'vue3-marquee-slider';
+import 'vue3-marquee-slider/dist/style.css'
+
+createApp(App).use(Vue3MarqueeSlider).mount('#app')
+```
+
+Once you have registered the component, you can use it in any of your Vue templates by using the custom element syntax:
+
+```html
+
+
+
+
+
+
+
+```
+
+With loop:
+
+```html
+
+
+
+```
+
+```js
+export default {
+ data() {
+ return {
+ images: [
+ { url: 'https://app.imgforce.com/images/user/zrC_1622176244_logo-black-120.png' },
+ { url: 'https://app.imgforce.com/images/user/O1j_1670884991_js-logo.png' },
+ { url: 'https://app.imgforce.com/images/user/Igx_1670885749_vue-logo.png' },
+ { url: 'https://app.imgforce.com/images/user/TPs_1670885858_react-logo.png' },
+ { url: 'https://app.imgforce.com/images/user/jY4_1670885309_angular-logo.png' }
+ ]
+ }
+ }
+}
+```
+
+### Component Usage
+
+Sometimes you will want to import the component separately in each individual component.
+
+This allows you to have more control over the component and tailor it specifically for each individual component's needs. Importing the component separately also allows for better organization and separation of concerns in your codebase.
+
+```html
+
+
+
+
+
+
+
+```
+
+```js
+import { Vue3MarqueeSlider } from 'vue3-marquee-slider'
+import 'vue3-marquee-slider/dist/style.css'
+
+export default {
+ components: {
+ Vue3MarqueeSlider,
+ }
+}
+```
+
+or inside script tag with setup
+
+```js
+import { Vue3MarqueeSlider } from 'vue3-marquee-slider'
+import 'vue3-marquee-slider/dist/style.css'
+```
+
+### Available props
+
+| Name | Type | Default | Description |
+|--|--|--|--|
+|**autoWidth**|`Boolean`|`false`|The prop autoWidth of the vue3-marquee-slider component allows the width of each item in the slider to be automatically calculated based on the content of the item. This can be useful in cases where the items in the slider have varying lengths of text or other content, and you want to ensure that each item is displayed properly without being truncated or overlapping with other items. By setting this prop to true, the vue3-marquee-slider component will automatically adjust the width of each item to fit its content, ensuring that the items are displayed properly and are easy to read.
+|**id**|`String`|`id`|The prop id is required in the vue3-marquee-slider component in order to uniquely identify the element on the page. This is necessary for proper functioning of the component, as it allows for proper event handling and state management.
+|**paused**|`Boolean`|`false`|The paused prop is a boolean value that determines whether or not the marquee slider is paused. If paused is set to true, the marquee will not animate and will remain stationary. If paused is set to false, the marquee will animate according to the specified settings.
+|**repeat**|`Number`|`10`|The repeat prop is used to specify the number of times the marquee items should repeat before stopping. This prop can take an integer value.
+|**reverse**|`Boolean`|`false`|The reverse prop in vue3-marquee-slider is used to determine whether the marquee should move in a reverse direction. This can be useful for creating a backwards scrolling effect or for reversing the direction of the marquee when the user navigates to a different section of the website. This prop can be set to either true or false depending on the desired behavior of the marquee.
+|**space**|`Number`|`200`|To add space between items in a vue3-marquee-slider, you can use the space prop. The space prop allows you to specify the amount of space in pixels between each item in the slider.
+|**speed**|`Number`|`1500`|The speed prop in vue3-marquee-slider allows users to set the speed at which the content in the slider will move. This can be set in miliseconds, allowing for precise control over the speed. The default value is 1500 ms, but this can be increased or decreased as needed.
+|**width**|`Number`|`100`|The width prop of each item in the vue3-marquee-slider determines the width of the individual items within the slider. This prop can be useful for creating a consistent look and feel for the items in the slider, and for ensuring that they all fit within the designated space of the slider.
+
+
+## Examples
+
+Visit the following link. There you will find various examples of how to use the vue3-marquee-slider component in different ways, including different options for customizing the appearance and behavior of the slider.
+
+These examples can help you understand the different features and options available with the vue3-marquee-slider component, and how you can use them to create your own custom marquee sliders.
+
+### ๐ Basic sample with images
+
+```html
+
+
+
+
+
+
+
+```
+
+### ๐ With static width of the images
+
+```html
+
+
+
+
+
+
+
+```
+
+### ๐ Speed & Space between items
+
+```html
+
+
+
+
+
+
+
+```
+
+### ๐ Basic usage with text
+
+```html
+
+ Schnapsterdog
+ Vue.js
+ Nuxt.js
+ vue3-marquee-slider
+
+```
+
+### ๐ Cards inside vue3-marquee-slider
+
+```html
+
+
+
\ No newline at end of file
diff --git a/src/components/MarqueeSlider.vue b/src/components/MarqueeSlider.vue
new file mode 100644
index 0000000..95a8753
--- /dev/null
+++ b/src/components/MarqueeSlider.vue
@@ -0,0 +1,180 @@
+
+
+
+
+
+
+
Hello
+
From
+
MarqueeSlider
+
+
+
+
+
+
diff --git a/src/components/index.js b/src/components/index.js
new file mode 100644
index 0000000..7185613
--- /dev/null
+++ b/src/components/index.js
@@ -0,0 +1,3 @@
+/* eslint-disable import/prefer-default-export */
+
+export { default as MarqueeSlider} from './MarqueeSlider.vue';
\ No newline at end of file
diff --git a/src/main.js b/src/main.js
new file mode 100644
index 0000000..01433bc
--- /dev/null
+++ b/src/main.js
@@ -0,0 +1,4 @@
+import { createApp } from 'vue'
+import App from './App.vue'
+
+createApp(App).mount('#app')
diff --git a/vite.config.js b/vite.config.js
new file mode 100644
index 0000000..d2f3832
--- /dev/null
+++ b/vite.config.js
@@ -0,0 +1,25 @@
+import { defineConfig } from 'vite'
+import path from 'path';
+import vue from '@vitejs/plugin-vue'
+
+// https://vitejs.dev/config/
+export default defineConfig({
+ build: {
+ lib: {
+ entry: path.resolve(__dirname, 'src/components/index.js'),
+ name: 'vue3-marquee-slider',
+ fileName: (format) => `vue3-marquee-slider.${format}.js`,
+ },
+ rollupOptions: {
+ external: ['vue'],
+ output: {
+ // Provide global variables to use in the UMD build
+ // Add external deps here
+ globals: {
+ vue: 'Vue',
+ },
+ },
+ },
+ },
+ plugins: [vue()],
+})