F
Filament17mo ago
Oumaima

Image Carrousel

I want to add image carrousel to my view page , how can I do that ? , I searched for plugins , but nothing found
17 Replies
Oumaima
OumaimaOP17mo ago
I have creted a custom entry and use 'slick-carousel' and register the assets using : //code FilamentAsset::register([ Css::make('custom-stylesheet', DIR . '/../../resources/css/custom.css'), ]);
Sandeep
Sandeep17mo ago
@Oumaima What was the solution for image carousel? Can you please share the same
Oumaima
OumaimaOP17mo ago
then , I installed this : https://kenwheeler.github.io/slick/
slick - the last carousel you'll ever need
slick is a responsive carousel jQuery plugin that supports multiple breakpoints, CSS3 transitions, touch events/swiping & much more!
Oumaima
OumaimaOP17mo ago
and register the assets in AppProvider like this : FilamentAsset::register([ Css::make('custom-stylesheet', DIR . '/../../resources/css/custom.css'), ]); and create the carousel instance in the blade
Oumaima
OumaimaOP17mo ago
No description
Sandeep
Sandeep17mo ago
Okay, Thanks a lot. Let me implement Hey
Sandeep
Sandeep17mo ago
I have implemented, but it's side effects on top bar
No description
Sandeep
Sandeep17mo ago
Yes, Got the solution on above issue: Just need to put before loading styles: @livewireStyles <link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/npm/[email protected]/slick/slick.css"/> <!-- Add the slick-theme.css if you want default styling --> <link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/npm/[email protected]/slick/slick-theme.css"/> And for scripts, put before loading scripts: @livewireScripts <script type="text/javascript" src="//code.jquery.com/jquery-1.11.0.min.js"></script> <script type="text/javascript" src="//code.jquery.com/jquery-migrate-1.2.1.min.js"></script> <script type="text/javascript" src="//cdn.jsdelivr.net/npm/[email protected]/slick/slick.min.js"></script> May it will use for you or other guy's
toeknee
toeknee17mo ago
noooo please please do not use jQuery 😭
xy
xy17mo ago
Since Alpine is bundled in, use that instead: https://codesandbox.io/s/tailwind-alpine-js-carousel-ibrvzc
druidmaciek
CodeSandbox
Tailwind + Alpine.js Carousel - CodeSandbox
Tailwind + Alpine.js Carousel by druidmaciek
Sandeep
Sandeep17mo ago
Okay, Thanks I will implment that
Sandeep
Sandeep17mo ago
But I required like this which available to slick
No description
Sandeep
Sandeep17mo ago
How I can achieve this one in tailwind and alpine Js, if any demo or idea?
Sandeep
Sandeep17mo ago
Okay, nice idea. Thanks But as of now will done with JQuery of slick slider due to requirement.
Marco Mapelli
Marco Mapelli14mo ago
Is it possible to open the carousel in a modal window from a table image? And How?

Did you find this page helpful?