Bootstrap-Year-Calendar显示所有月份,垂直而不是水平显示

时间:2018-08-21 15:01:10

标签: javascript html bootstrap-4

我已经实现了Bootstrap-Year-Calendar插件,但是它是垂直显示的,我不知道它是否对我的脚本或链接有任何作用。 我尝试更改Jquery和Bootstrap版本的版本,但结果是相同的。

我正在遵循以下说明:http://www.bootstrap-year-calendar.com/#Documentation/Installation

这是我的代码:

    

<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
    <!-- Bootstrap css-->

    <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">

    <link rel="stylesheet" href="{{ static_url('css/bootstrap.min.css') }}">

    <!-- CUSTOM & PAGES STYLE -->
    <link rel="stylesheet" href="{{ static_url('css/custom.css') }}">


</head>

<body>

<div class="container">
<div data-provide="calendar" class="calendar">

    </div>      
</div>


<!-- Bootsrap -->
<script src="https://code.jquery.com/jquery-2.2.4.js" integrity="sha256-iT6Q9iMJYuQiMWNd9lDyBUStIq/8PuOW33aOqmvFpqI=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>

<link rel="stylesheet" href="{{ static_url('css/bootstrap-year-calendar.min.css') }}">
<script src="{{ static_url('js/bootstrap-year-calendar.min.js') }}"></script>

<script>
$(function() {
    $('#calendar').calendar();
});
</script>
</body>

</html>

enter image description here 这就是现在的样子

1 个答案:

答案 0 :(得分:0)

这是因为您使用的是Bootstrap4。Bootstrap-Year-Calendar仅适用于Bootstrap 3版本。如果您无法在站点中使用bootstrap3,则为BS4自定义一个fork

来自fork作者comment:-他已经迁移了依赖于不推荐使用的BS3类的类,它应该可以工作。 BS4不再使用字形符号,因此他使用open-iconic作为依赖项,因为它是他们推荐的图标来源(https://getbootstrap.com/docs/4.0/extend/icons/

免责声明:我与图书馆及其叉子都没有任何联系。