A Pen by Anahita(Anita) Esfandiaryfard on CodePen.
Created
October 15, 2017 07:30
-
-
Save esfandiaryfard/71e4e505b1fa2ef35e8c005cf3c33446 to your computer and use it in GitHub Desktop.
Materialize slider
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
<div class="slider"> | |
<ul class="slides"> | |
<li> | |
<img src="http://lorempixel.com/580/250/nature/1"> <!-- random image --> | |
<div class="caption center-align"> | |
<h3>This is our big Tagline!</h3> | |
<h5 class="light grey-text text-lighten-3">Here's our small slogan.</h5> | |
</div> | |
</li> | |
<li> | |
<img src="http://lorempixel.com/580/250/nature/2"> <!-- random image --> | |
<div class="caption left-align"> | |
<h3>Left Aligned Caption</h3> | |
<h5 class="light grey-text text-lighten-3">Here's our small slogan.</h5> | |
</div> | |
</li> | |
<li> | |
<img src="http://lorempixel.com/580/250/nature/3"> <!-- random image --> | |
<div class="caption right-align"> | |
<h3>Right Aligned Caption</h3> | |
<h5 class="light grey-text text-lighten-3">Here's our small slogan.</h5> | |
</div> | |
</li> | |
<li> | |
<img src="http://lorempixel.com/580/250/nature/4"> <!-- random image --> | |
<div class="caption center-align"> | |
<h3>This is our big Tagline!</h3> | |
<h5 class="light grey-text text-lighten-3">Here's our small slogan.</h5> | |
</div> | |
</li> | |
</ul> | |
</div> |
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
$(document).ready(function(){ | |
$('.slider').slider(); | |
}); |
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="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.96.1/js/materialize.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
.slider .indicators .indicator-item { | |
background-color: #666666; | |
border: 3px solid #ffffff; | |
-webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); | |
-moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); | |
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); | |
} | |
.slider .indicators .indicator-item.active { | |
background-color: #ffffff; | |
} | |
.slider { | |
width: 900px; | |
margin: 0 auto; | |
} | |
.slider .indicators { | |
bottom: 60px; | |
z-index: 100; | |
/* text-align: left; */ | |
} |
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/materialize/0.96.1/css/materialize.min.css" rel="stylesheet" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment