UNPKG
equation-admin-template
Version:
latest (1.0.0)
1.0.0
Booststrap 4 admin template made by equation
equation-admin-template
/
ltr
/
assets
/
js
/
components
/
custom-carousel.js
10 lines
•
312 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
$(
function
(
){
var
car_m_2 = $(
'#car_m_2'
).
data
(
'carousel'
);
var
thumbs = $(
'#car_m_2_thumbs > .thumb'
); $.
each
(thumbs,
function
(
){
var
thumb = $(
this
), index = thumb.
data
(
'index'
) -
1
; thumb.
on
(
'click'
,
function
(
){ car_m_2.
slideTo
(index); }); }); });