Html 旋转木马、手风琴和;带引导的警报

Html 旋转木马、手风琴和;带引导的警报,html,css,bootstrapper,Html,Css,Bootstrapper,互联网上的人们。我的老师一直在Lynda.com上给我的班级分配这些培训(Bootstrap 4 Essentials trainings),所以我没有在她的班上学到任何东西。不久前,我的白痴自己决定,“好吧,如果她不在教学上投入更多的精力,那么我就不应该在学习材料上投入更多的精力。” 因此,我目前的困境是:我完全不知道我的代码出了什么问题。我是直接从培训中抄来的,我不知道发生了什么 转盘将仅加载具有活动类的图像 除非我申请show类,否则手风琴不会显示内容 当我单击“x”时,警报不会消失

互联网上的人们。我的老师一直在Lynda.com上给我的班级分配这些培训(Bootstrap 4 Essentials trainings),所以我没有在她的班上学到任何东西。不久前,我的白痴自己决定,“好吧,如果她不在教学上投入更多的精力,那么我就不应该在学习材料上投入更多的精力。”

因此,我目前的困境是:我完全不知道我的代码出了什么问题。我是直接从培训中抄来的,我不知道发生了什么

  • 转盘将仅加载具有活动类的图像
  • 除非我申请show类,否则手风琴不会显示内容
  • 当我单击“x”时,警报不会消失
在一份文件中,我复制了代码,并进行了修改,以符合我被分配任务的要求。在另一种情况下,我直接从已完成的文件中复制粘贴了元素,这些文件在运行时正常工作。这两份文件都没有正常运行。(这些文件用于与Lynda培训文件分开的作业。)

所以,我就把这耻辱留在这里。帮帮我,婊子,Idc,我已经到极限了

<html lang="en">
<head>
    <title>Worksheet 8</title>
    
    <!--
    Author: Crab
    Date: 11/20/2020

    Filename: worksheet8.html
    -->
    
    <!-- Required meta tags -->
    <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://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
</head>
<body>
    <header>
        <h1 class="p-3 text-left text-light bg-dark d-md-none d-sm-block">Chapter 8 Worksheet</h1>
    </header>
    <header class="jumbotron jumbotron-fluid p-4 bg-dark d-none d-md-block">
        <h1 class="display-1 mb-4 text-center text-light">Chapter 8 Worksheet</h1>
    </header>
    <div class="container">
        <h2>Carousel</h2>
        
        <div class="row">
            <section class="col-12">
                <div class="carousel slide" id="featured" data-ride="carousel">
                    <ol class="carousel-indicators">
                        <li data-target="#feature" data-slide-to="0"></li>
                        <li data-target="#feature" data-slide-to="1"></li>
                        <li data-target="#feature" data-slide-to="2"></li>
                    </ol>
                    <div class="carousel-inner">
                        <div class="carousel-item">
                            <img class="d-nlock w-100" src="images/image1.JPG" alt="Lifestyle Photo">
                        </div>
                        <div class="carousel-item">
                            <img class="d-nlock w-100" src="images/image2.JPG" alt="Mission">
                            <div class="carousel-caption d-none d-md-block">
                                <h3>Pete, owner of McAllister</h3>
                                <p>"Wisdom Pet Medicine is the only clinic around that will even book pet fish for appointments."</p>
                            </div>
                        </div>
                        <div class="carousel-item active">
                            <div><img class="d-nlock w-100" src="images/image3.JPG" alt="Vaccinations"></div>
                        </div>
                    </div>
                    <a class="carousel-control-prev" href="#featured" role="button" data-slide="prev">
                        <span class="carousel-control-prev-icon" aria-hidden="true">
                            <span class="sr-only">Previous</span>
                        </span>
                    </a>
                    <a class="carousel-control-next" href="#featured" role="button" data-slide="next">
                        <span class="carousel-control-next-icon" aria-hidden="true">
                            <span class="sr-only">Next</span>
                        </span>
                    </a>
                </div>

                <h2>Our Mission</h2>

                <p>Wisdom Pet Medicine strives to blend the best in traditional and alternative medicine in the diagnosis and treatment of companion animals including dogs, cats, birds, reptiles, rodents, and fish. We apply the wisdom garnered in the centuries old tradition of veterinary medicine, to find the safest treatments and cures.</p>

                <p>We strive to be your pet's medical experts from youth through the senior years. We build preventative health care plans for each and every one of our patients, based on breed, age, and sex, so that your pet receives the most appropriate care at crucial milestones. We want to give your pet a long and healthy life.</p>
            </section>
        </div><!-- row -->
        
        <h2 class="pt-4">Accordion</h2>
        
        <div class="accordion" id="servicesaccordion">
                <div class="card">
                    <div class="card-header" id="groomingheading">
                        <h5 class="mb-0">
                            <a href="#grooming" data-toggle="collapse" aria-expanded="true" aria-controls="grooming">
                                Grooming
                            </a>
                        </h5>
                    </div><!-- card header -->

                    <div id="grooming" class="collapse show" data-parent="#servicesaccordion" aria-labelledby="groomingheading">
                        <div class="card-body">
                            <p>Our therapeutic grooming treatments help battle fleas, allergic dermatitis, and other challenging skin conditions.</p>
                        </div>
                    </div><!-- collapse -->
                </div><!-- card --> 

                <div class="card">
                    <div class="card-header" id="generalhealthheading">
                      <h5 class="mb-0">
                        <a href="#generalhealth"
                          class="collapsed"
                          data-toggle="collapse"
                          aria-expanded="false"
                          aria-controls="generalhealth"
                        >General Health</a>
                      </h5>
                    </div><!-- card header -->

                    <div id="generalhealth" class="collapse" data-parent="#servicesaccordion" aria-labelledby="generalhealthheading">
                        <div class="card-body">
                            <p>Wellness and senior exams, ultrasound, x-ray, and dental cleanings are just a few of our general health services.</p>
                        </div>
                    </div><!-- card collapse -->
                </div><!-- card -->

                <div class="card">
                    <div class="card-header" id="nutritionheading">
                        <h5 class="mb-0">
                            <a href="#nutrition" class="collapsed" data-toggle="collapse"
                              aria-expanded="false">
                                Nutrition
                            </a>
                        </h5>
                    </div><!-- card header -->

                    <div id="nutrition" class="collapse" data-parent="#servicesaccordion" aria-labelledby="nutritionheading">
                        <div class="card-body">
                            <p>Let our nutrition experts review your pet's diet and prescribe a custom nutrition plan for optimum health and disease prevention.</p>
                        </div>
                    </div><!-- collapse -->
                </div><!-- card -->
            </div><!-- accordion -->
        
        <h2 class="pt-4">Alert</h2>
        
        <div class="alert alert-info alert-dismissable fade show">
            <button type="button" class="close" data-dismiss="alert" aria-label="Close">
                <span aria-hidden="true">&times;</span>  
            </button>
            <h4 class="alert-heading">Standard Checkups</h4>
            <p class="mb-2">Our standard checkups offer ultrasounds, x-rays and dental cleanings.</p>
            <a href="#">More Info</a>
        </div>
    </div><!-- container -->
<script src="js/jquery.slim.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>```

工作表8
第8章工作表
第8章工作表
旋转木马
  • 皮特,麦卡利斯特的老板 “智慧宠物医学是全球唯一一家甚至会预约宠物鱼的诊所。”

    我们的使命 智慧宠物医学致力于将传统医学和替代医学的精华融合到宠物的诊断和治疗中,包括狗、猫、鸟、爬行动物、啮齿动物和鱼类。我们运用数百年兽医传统中积累的智慧,寻找最安全的治疗方法

    我们努力成为您宠物的医疗专家,从年轻到老年。我们根据品种、年龄和性别为每位患者制定预防性医疗保健计划,以便您的宠物在关键时刻得到最适当的护理。我们想让您的宠物健康长寿

    手风琴 我们的美容治疗有助于对抗跳蚤、过敏性皮炎和其他具有挑战性的皮肤病

    健康和高级检查、超声波、x光和牙齿清洁只是我们一般健康服务的一小部分

    让我们的营养专家检查您宠物的饮食,并制定一个定制的营养计划,以实现最佳健康和疾病预防

    警觉的 &时代; 标准检查

    我们的标准检查提供超声波、x光和牙齿清洁

    ```
    用这些替换最后3个

    <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
    <script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
    <script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.min.js" integrity="sha384-w1Q4orYjBQndcko6MimVbzY0tgp4pWB4lZ7lr30WKz0vr/aWKhXdBNmNb5D92v7s" crossorigin="anonymous"></script>
    
    
    

    现在它应该可以正常工作了,很可能是你的脚本标签出了问题

    有一个上帝,就是你,非常感谢!!没问题,很高兴帮助@HalfWitCrab