如何在laravel项目中添加OwlCarousel?
How to add OwlCarousel in laravel project?
无法将 OwlCarousel 正确添加到 laravel 项目并且它不起作用。
我该怎么办?
我将 owl.carousel.min.css
、owl.theme.default.min.css
和 owl.carousel.min.js
复制到与 view.blade.php
文件位于同一目录的 owlcarousel
文件夹。
我的代码是:
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Laravel</title>
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Nunito:200,600" rel="stylesheet">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<link rel="stylesheet" href="owlcarousel/owl.carousel.min.css">
<link rel="stylesheet" href="owlcarousel/owl.theme.default.min.css">
</head>
<body>
<div class="owl-carousel">
<div> Your Content</div>
<div> Your Content</div>
<div> Your Content</div>
<div> Your Content</div>
<div> Your Content</div>
<div> Your Content</div>
<div> Your Content</div>
</div>
<script>
$(document).ready(function () {
$(".owl-carousel").owlCarousel();
});
</script>
<script src="owlcarousel/owl.carousel.min.js"></script>
</body>
</html>
正确的方法是这个:
<script type="text/javascript" src="{{ URL::asset('js/owl.min.js') }}"></script>
函数 URL::asset() 为您生成必要的 url。 css:
相同
<link rel="stylesheet" href="{{ URL::asset('css/owl.css') }}" />
您必须将 owlcarousel
文件夹放在 laravel 的 app/public
文件夹中,而不是放在 views 文件夹中。
希望这有帮助。
无法将 OwlCarousel 正确添加到 laravel 项目并且它不起作用。 我该怎么办?
我将 owl.carousel.min.css
、owl.theme.default.min.css
和 owl.carousel.min.js
复制到与 view.blade.php
文件位于同一目录的 owlcarousel
文件夹。
我的代码是:
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Laravel</title>
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Nunito:200,600" rel="stylesheet">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<link rel="stylesheet" href="owlcarousel/owl.carousel.min.css">
<link rel="stylesheet" href="owlcarousel/owl.theme.default.min.css">
</head>
<body>
<div class="owl-carousel">
<div> Your Content</div>
<div> Your Content</div>
<div> Your Content</div>
<div> Your Content</div>
<div> Your Content</div>
<div> Your Content</div>
<div> Your Content</div>
</div>
<script>
$(document).ready(function () {
$(".owl-carousel").owlCarousel();
});
</script>
<script src="owlcarousel/owl.carousel.min.js"></script>
</body>
</html>
正确的方法是这个:
<script type="text/javascript" src="{{ URL::asset('js/owl.min.js') }}"></script>
函数 URL::asset() 为您生成必要的 url。 css:
相同<link rel="stylesheet" href="{{ URL::asset('css/owl.css') }}" />
您必须将 owlcarousel
文件夹放在 laravel 的 app/public
文件夹中,而不是放在 views 文件夹中。
希望这有帮助。