引导程序无法与Visual Studio 2017一起正常使用 [英] bootstrap not working properly with visual studio 2017

查看:80
本文介绍了引导程序无法与Visual Studio 2017一起正常使用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试图在Visual Studio 2017中使用引导程序创建轮播. 我使用NuGet软件包管理器安装了jquery和bootstrap. 为了检查其工作原理,我为轮播生成了一个引导代码段.

I am try to create a carousel using bootstrap in visual studio 2017. I installed jquery and bootstrap using NuGet package manager. And to check its working, i generated a bootstrap snippet for carousel.

这是代码:

<!DOCTYPE html>
<html>

<head>
  <meta charset="utf-8" />
  <title>Homepage</title>
  <link href="Content/bootstrap.min.css" rel="stylesheet" />
</head>

<body>

  <div class="container">
    <div class="row">
      <div id="my-carousel" class="carousel slide" data-ride="carousel">
        <!-- Indicators -->
        <ol class="carousel-indicators">
          <li data-target="#my-carousel" data-slide-to="0" class="active"></li>
          <li data-target="#my-carousel" data-slide-to="1"></li>
          <li data-target="#my-carousel" data-slide-to="2"></li>
        </ol>

        <!-- Wrapper for slides -->
        <div class="carousel-inner" role="listbox">
          <div class="item active">
            <img alt="First slide" src="http://placehold.it/1200x675&text=First+slide">
          </div>
          <div class="item">
            <img alt="Second slide" src="http://placehold.it/1200x675&text=Second+slide">
          </div>
          <div class="item">
            <img alt="Third slide" src="http://placehold.it/1200x675&text=Third+slide">
          </div>
        </div>

        <!-- Controls -->
        <a class="left carousel-control" href="#my-carousel" 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="#my-carousel" role="button" data-slide="next">
          <span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
          <span class="sr-only">Next</span>
        </a>
      </div>
    </div>
  </div>

  <script src="Scripts/jquery-3.3.1.min.js"></script>
  <script src="Scripts/bootstrap.min.js"></script>

</body>

</html>

以上代码的输出与预期的不同,因为所有图像幻灯片都放置在另一个幻灯片的下方,而不是轮播.

The output of the above code is not as expected, as all image slides are placed one below the other and not as a carousel.

推荐答案

您使用的标记适用于3.x.例如,.item现在是.carousel-item.

The markup you're using is for 3.x. For example .item is now .carousel-item.

这篇关于引导程序无法与Visual Studio 2017一起正常使用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆