javascript - Jquery Slider with bottom loading indication -
i need create slider home page. please @ below link, same type slider need.
sample link: http://www.apple.com/
please tell me name of plugin , open source?
if have similar open source plugin, please reply me reference link.
<!doctype html> <html lang="en"> <head> <title>bootstrap example</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.0/jquery.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> <style> .carousel-inner > .item > img, .carousel-inner > .item > > img { width: 70%; margin: auto; } </style> </head> <body> <div class="container"> <br> <div id="mycarousel" class="carousel slide" data-ride="carousel"> <!-- indicators --> <ol class="carousel-indicators"> <li data-target="#mycarousel" data-slide-to="0" class="active"></li> <li data-target="#mycarousel" data-slide-to="1"></li> <li data-target="#mycarousel" data-slide-to="2"></li> <li data-target="#mycarousel" data-slide-to="3"></li> </ol> <!-- wrapper slides --> <div class="carousel-inner" role="listbox"> <div class="item active"> <img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:and9gcqv1gbtlzkpchhhb7cs4byvunawmxor-snym_u4-ct4y70k7ekeblk5h_i" alt="chania" width="460" height="345"> </div> <div class="item"> <img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:and9gcrp0trjtlx7oswpsrxkj4mukxfmxo6nl1_z5ua4xkhjcs3ki7scyg" alt="chania" width="460" height="345"> </div> <div class="item"> <img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:and9gcrapv1onpfzhfsanxa4xovj2ofnj8-w78hcmkaonq9n05jgstvo" alt="flower" width="460" height="345"> </div> </div> <!-- left , right controls --> <a class="left carousel-control" href="#mycarousel" role="button" data-slide="prev"> <span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span> <span class="sr-only">previous</span> </a> <a class="right carousel-control" href="#mycarousel" role="button" data-slide="next"> <span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span> <span class="sr-only">next</span> </a> </div> </div> </body> </html>
Comments
Post a Comment