Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
thednp committed May 31, 2020
1 parent c928e50 commit 3037ede
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
1 change: 0 additions & 1 deletion assets/css/theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
}
.carousel-item,
.carousel-item.active {
-webkit-transition-timing-function: cubic-bezier(.45,.18,0,1);
transition-timing-function: cubic-bezier(.45,.18,0,1);
}
@media (min-width: 768px) {
Expand Down
12 changes: 6 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -543,19 +543,19 @@ <h3>Carousel DATA API</h3>
&lt;!-- Wrapper for slides --&gt;
&lt;div class="carousel-inner"&gt;
&lt;div class="carousel-item active"&gt;
&lt;img src="..." alt="..."&gt;
&lt;img class="img-fluid" src="..." alt="..."&gt;
&lt;div class="carousel-caption"&gt;
&lt;h3&gt;This is a carousel caption&lt;/h3&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class="carousel-item"&gt;
&lt;img src="..." alt="..."&gt;
&lt;img class="img-fluid" src="..." alt="..."&gt;
&lt;div class="carousel-caption"&gt;
&lt;h3&gt;This is a caption&lt;/h3&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class="carousel-item"&gt;
&lt;img src="..." alt="..."&gt;
&lt;img class="img-fluid" src="..." alt="..."&gt;
&lt;div class="carousel-caption"&gt;
&lt;h3&gt;This is another caption&lt;/h3&gt;
&lt;/div&gt;
Expand Down Expand Up @@ -662,19 +662,19 @@ <h3>Carousel Example</h3>
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
<div class="carousel-item">
<img src="https://unsplash.it/837/300?image=0" alt="">
<img class="img-fluid" src="https://unsplash.it/837/300?image=0" alt="">
<div class="carousel-caption">
<h3>This is another carousel</h3>
</div>
</div>
<div class="carousel-item">
<img src="https://unsplash.it/837/300?image=10" alt="">
<img class="img-fluid" src="https://unsplash.it/837/300?image=10" alt="">
<div class="carousel-caption">
<h3>This is a caption</h3>
</div>
</div>
<div class="carousel-item">
<img src="https://unsplash.it/837/300?image=210" alt="">
<img class="img-fluid" src="https://unsplash.it/837/300?image=210" alt="">
<div class="carousel-caption">
<h3>This is another caption</h3>
</div>
Expand Down

0 comments on commit 3037ede

Please sign in to comment.