Skip to content

Instantly share code, notes, and snippets.

@codigoconjuan
Created August 26, 2015 15:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codigoconjuan/e2a554c9ef67c19c292a to your computer and use it in GitHub Desktop.
Save codigoconjuan/e2a554c9ef67c19c292a to your computer and use it in GitHub Desktop.
Gist for Derek Lee
<section id="slider" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="item active">
<img src="img/slider_1.png">
</div>
<div class="item">
<img src="img/slider_1.png">
</div>
<div class="item">
<img src="img/slider_1.png">
</div>
</div>
<a class="left carousel-control" href="#slider" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span></a>
<a class="right carousel-control" href="#slider" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
</a>
<ol class="carousel-indicators">
<li data-target="#slider" data-slide-to="0" class="active"></li>
<li data-target="#slider" data-slide-to="1"></li>
<li data-target="#slider" data-slide-to="2"></li>
</ol>
</section>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment