Last active
March 30, 2022 02:10
-
-
Save Roger963/1040c3f58e87f372c362a51c7407af80 to your computer and use it in GitHub Desktop.
carrusel
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
carrusel | |
-------- | |
A [Pen](https://codepen.io/roger963/pen/OJzgKYv) by [Roger963](https://codepen.io/roger963) on [CodePen](https://codepen.io). | |
[License](https://codepen.io/license/pen/OJzgKYv). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- var i = 1 | |
- var j = 1 | |
- var limit = 10 | |
.section.section-project | |
h2.section__title Project Carousel | |
small.section__subtitle | |
| A simple Synchronised carousel by | |
a(href="https://codepen.io/ariona") @ariona_rian | |
br | |
| using Slick Carousel | |
.project-carousel | |
.project-strip | |
while i++ < limit | |
.project | |
img(src="http://unsplash.it/578/360/?image=" + i * 13 + "&blur", alt="") | |
.project-screen | |
.project-detail | |
while j++ < limit | |
.project | |
img(src="http://unsplash.it/578/361/?image=" + j * 13 , alt="") | |
.screen-frame |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(".project-detail").slick({ | |
slidesToShow: 1, | |
arrows: false, | |
asNavFor: '.project-strip', | |
autoplay: true, | |
autoplaySpeed: 3000 | |
}); | |
$(".project-strip").slick({ | |
slidesToShow: 5, | |
slidesToScroll: 1, | |
arrows: false, | |
asNavFor: '.project-detail', | |
dots: false, | |
infinite: true, | |
centerMode: true, | |
focusOnSelect: true | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="https://code.jquery.com/jquery-2.2.4.min.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.6.0/slick.min.js"></script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import 'https://fonts.googleapis.com/css?family=Josefin+Slab'; | |
body{ | |
font-family: "Josefin Slab"; | |
height: 100vh; | |
background-color: #222; | |
} | |
.section-project{ | |
padding: 50px 0; | |
position: relative; | |
background-color: #222; | |
} | |
.section__title, .section__subtitle{ | |
text-align: center; | |
color: white; | |
display: block; | |
} | |
.section__title{ | |
font-size: 3em; | |
line-height: 1; | |
margin: 0 0 20px; | |
} | |
.section__subtitle{ | |
font-size: 1.2em; | |
line-height: 1.5; | |
opacity: .5; | |
a{ | |
color: inherit | |
} | |
} | |
// Project carousel outer wrapper | |
.project-carousel{ | |
position: relative; | |
padding: 50px 0; | |
} | |
// Project Strip | |
.project-strip{ | |
margin: 150px 0 150px; | |
filter: blur(10px); | |
.project{ | |
cursor: pointer; | |
} | |
img{ | |
max-width: 100%; | |
width: 100%; | |
height: auto; | |
} | |
} | |
// Project Details | |
.project-screen{ | |
width: 768px; | |
height: 451px; | |
position: absolute; | |
left: 0; | |
right: 0; | |
top: 0; | |
bottom: 0; | |
margin: auto; | |
// Project Detail Carousel | |
.project-detail{ | |
position: absolute; | |
left: 0; | |
right: 0; | |
width: 578px; | |
height: 361px; | |
margin: 32px auto 0; | |
z-index: 1; | |
background-color: #333; | |
} | |
// Macbook frame | |
.screen-frame{ | |
content:" "; | |
width: 768px; | |
height: 451px; | |
position: absolute; | |
background-image: url("https://dl.dropboxusercontent.com/u/26808427/cdn/experiments/training/macbook-frame.png"); | |
background-repeat: no-repeat; | |
} | |
// Initial style to stack the slides | |
.project{ | |
margin-right: -100%; | |
float: left; | |
cursor: move; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link href="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.6.0/slick.min.css" rel="stylesheet" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment