Firefox support carousel bootstrap v4.0?? -
i fired carousel bootstrap v4.0 example on firefox browser. images-item doesn't slide!
i think bootstrap bug.
so, firefox support carousel bootstrap v4.0??
this example:
<!doctype html> <html> <head> <meta charset="utf-8"> <title>proof</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.css"> <link rel="stylesheet" href="bootstrap-4.0.0-beta\dist\css\bootstrap.min.css"> <!-- messo prima di style.css altrimenti annulla la formattazione di base --> <!-- per il menu smartphone --> <meta http-equiv="x-ua-compatible" content="ie=edge"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> </head> <body style="background:#000"> <div id="carouselevents" class="carousel slide" data-ride="carousel"> <div class="carousel-inner" style="height:100%"> <div class="carousel-item active"> <img class="d-block w-100" src="invernale.jpg" alt="concerto"/> </div> <!-- second slide events --> <div class="carousel-item"> <img class="d-block w-100" src="estivo.jpg" alt="concerto"/> </div> <!-- third slide events --> <div class="carousel-item"> <img class="d-block w-100" src="invernale.jpg" alt="concerto"/> </div> </div> <a class="carousel-control-prev" href="#carouselevents" role="button" data-slide="prev"> <span class="carousel-control-prev-icon" aria-hidden="true"></span> <span class="sr-only">previous</span> </a> <a class="carousel-control-next" href="#carouselevents" role="button" data-slide="next"> <span class="carousel-control-next-icon" aria-hidden="true"></span> <span class="sr-only">next</span> </a> </div> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js" integrity="sha384-b/u6ypibehpof/4+1nzfpr53nxss+glckfwbdfntxtclqqenisfwazpkamnfnmj4" crossorigin="anonymous"></script> <script src="bootstrap-4.0.0-beta\dist\js"></script> </body> </html>
you using backslashes\ in href links change them forward slash /
wiki
Comments
Post a Comment