javascript - owl carousel - not working online -
javascript - owl carousel - not working online -
owl slider not working online, when seek in localhost working. please help! thanks. link http://mobile.best0709.cafe24.com/pls.html inserted korean cms shopping mall.
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>owl carousel - 1 slide</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content="jquery responsive carousel - owl carusel"> <meta name="author" content="bartosz wojciechowski"> <!-- owl carousel assets --> <link href="/owl.carousel.css" rel="stylesheet"> <link href="/owl.theme.css" rel="stylesheet"> <script src="/jquery-1.9.1.min.js"></script> <script src="/owl.carousel.min.js"></script> <script src="/owl.carousel.js"></script> <style> #owl-demo .item img{ display: block; width: 100%; height: auto; } </style> <script> $(document).ready(function() { $("#owl-demo").owlcarousel({ navigation : true, slidespeed : 300, paginationspeed : 400, singleitem : true, autoplay : 1000 // "singleitem:true" shortcut for: // items : 1, // itemsdesktop : false, // itemsdesktopsmall : false, // itemstablet: false, // itemsmobile : false }); }); </script> </head> <body> <div id="demo"> <div class="container"> <div class="row"> <div class="span12"> <div id="owl-demo" class="owl-carousel"> <div class="item"><img src="/web/upload/slider-011.png" width="100%" alt=""></div> <div class="item"><img src="/web/upload/slider-011.png" width="100%" alt=""></div> <div class="item"><img src="/web/upload/slider-011.png" width="100%" alt=""></div> </div> </div> </div> </div> </div> <!-- demo --> come in code here </body> </html>
so, yes there conflict issues in code.
<script type="text/javascript" src="http://mobile.best0709.cafe24.com/ind-script/optimizer.php?filename=2989881215a2d3fbb5b7fc82d14d65358165348d_1411447623&type=js&"></script>
above file causes conflict. if remove file, code works fine.
demo:http://jsfiddle.net/v2z46gf5/1/
if include file, code doesn't work:
demo: http://jsfiddle.net/v2z46gf5/
javascript jquery html owl-carousel
Comments
Post a Comment