New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More

@ctx-core/carousel

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ctx-core/carousel

ctx-core carousel


Version published
Weekly downloads
41
increased by412.5%
Maintainers
0
Weekly downloads
 
Created

@ctx-core/carousel

Install

npm i @ctx-core/carousel

Usage

<script>
	import Carousel from '@ctx-core/carousel'
</script>

<Carousel>
	<div class="slide slide-1">
		<h1>Slide 1</h1>	
	</div>
	<div class="slide slide-2">
		<h1>Slide 2</h1>	
	</div>
	<div class="slide slide-3">
		<h1>Slide 3</h1>	
	</div>
</Carousel>

<style>
	.slide {
		background-size: cover;
	}
	.slide-1 {
		background-image: url(https://images.unsplash.com/photo-1517770317945-aa2dd9c9306f);
	}
	.slide-2 {
		background-image: url(https://images.unsplash.com/photo-1556023176-4b9ee95cfe9b);
	}
	.slide-3 {
		background-image: url(https://images.unsplash.com/photo-1555999003-3f2bc447570e);	
	}
</style>

Styling

This Carousel is a simple left/right carousel. The slide styling is left up to you.

You can override:

  • :global(.Carousel .button)
  • :global(.Carousel .button:hover)
  • :global(.Carousel .button.prev)
  • :global(.Carousel .button.next)
  • :global(.Carousel svg)

FAQs

Package last updated on 01 Sep 2024

Did you know?

Socket

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.

Install

Related posts