Create Bootstrap carousel slider with Text


Bootstrap Framework is wonderful, it not only lets you develop webpages quickly and in a responsive way, but it also has a vast variety of plugins (js and css) that lets you incorporate some amazing stuff.

If you want to display Images with Text as a form of Carousel Slider with Text contents then you must make use of corousel.js: Github link

Licensed under MIT.

Let's see an Example : BootstrapCarousel.html
<div id="bSCarouse" class="carousel slide" data-ride="carousel">


 <!-- List of Elements -->
    <ol class="carousel-indicators">
        <li data-target="#bSCarouse" data-slide-to="0" class="active"></li>
        <li data-target="#bSCarouse" data-slide-to="1"></li>
        <li data-target="#bSCarouse" data-slide-to="2"></li>
    </ol>
    <div class="carousel-inner" role="listbox">
        <div class="item active">
            <img src="http://uploads6.wikiart.org/images/leonardo-da-vinci/mona-lisa.jpg!Blog.jpg" alt="Monalisa">
            <div class="carousel-caption">
                 <h2>Monalisa</h2>

                <p>The Mona Lisa (Monna Lisa or La Gioconda in Italian; La Joconde in French) is a half-length portrait of a woman by the Italian artist Leonardo da Vinci.</p>
            </div>
        </div>
        <div class="item">
            <img src="http://upload.wikimedia.org/wikipedia/commons/1/14/Melencolia_I_%28Durero%29.jpg" alt="Melencolia I">
            <div class="carousel-caption">
                 <h2>Melencolia </h2>

                <p>Melencolia I is a 1514 engraving by the German Renaissance master Albrecht DΓΌrer. It is an allegorical composition which has been the subject of many interpretations..</p>
            </div>
        </div>
        <div class="item">
            <img src="" style="background:#eee;height:600px">
            <div class="carousel-caption">
                 <h2><a href="http://code2care.org">Tutorial : Code2care</a></h2>

                <p style="color:#444">Tutorial Link : <a href="http://code2care.org">http://code2care.org</a>
                </p>
            </div>
        </div>
    </div>
</div>

The MIT License (MIT)

Copyright (c) 2011-2015 Twitter, Inc

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.



















Copyright Β© Code2care 2024 | Privacy Policy | About Us | Contact Us | Sitemap