![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
@arisbh/marqueeck
Advanced tools
Marqueeck is a custom marquee component for Sveltekit, speed-eased, style-free and without dependencies.
Features :
npm i @arisbh/marqueeck
or
pnpm i @arisbh/marqueeck
or
yarn i @arisbh/marqueeck
Once you've installed the module, use it in your project.
<script>
import Marqueeck from '@arisbh/marqueeck';
</script>
<Marqueeck>[Your element]</Marqueeck>
You can either pass your options directly in the <Marqueeck/>
component :
<script>
import Marqueeck from '@arisbh/marqueeck';
</script>
<Marqueeck options={{ speed: 75, direction: 'left' }}>[Your element]</Marqueeck>
or by constructing a MarqueeckOptions object, using provided Type :
<script lang="ts">
import Marqueeck from '@arisbh/marqueeck';
import type { MarqueeckOptions } from '@arisbh/marqueeck';
const options: MarqueeckOptions = {
speed: 75,
direction: 'left',
onHover: 'customSpeed',
hoverSpeed: 15,
gradualHoverDuration: 750
};
</script>
<Marqueeck {options}>[Your element]</Marqueeck>
You can using the reserved svelte:fragment
to place a sticky element inside the component.
<Marqueeck {options}>
[Your element]
<svelte:fragment slot="sticky">[Sticky element]</svelte:fragment>
</Marqueeck>
Edit the placement of the sticky element with stickyPosition
key.
You can pass a custom function to run when you hover on the Marqueeck element.
<script>
import Marqueeck from '@arisbh/marqueeck';
const handleHover = () => {
//do what you want
};
</script>
<Marqueeck on:hover={{ handleHover }}>[Your element]</Marqueeck>
const options = {
speed: 50, // in px/sec
direction: 'left', // either 'left' or 'right'
gap: 20, // in px
paddingX_Wrapper: 20, // in px
paddingY_Wrapper: 16, // in px
debug: false,
onHover: 'customSpeed', // either 'none', 'stop' or 'customSpeed'
gradualHoverDuration: 1250, // in ms
hoverSpeed: 10, // in px/sec
stickyPosition: 'start' // either 'start' or 'end'
};
FAQs
Marqueeck is a performant full-featured marquee component for Svelte, style-free, highly customizable and dependency-less.
The npm package @arisbh/marqueeck receives a total of 0 weekly downloads. As such, @arisbh/marqueeck popularity was classified as not popular.
We found that @arisbh/marqueeck demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
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.