Bootstrap02 家居商城首页之最新上架热门家具分类页面

news2024/11/17 21:23:20

目录

案例1:首页最新上架&热门家居实现

 案例2:分类页面搜索区域Bootstrap实现&栅格框架搭建

 案例3:分类页面分类列表实现&整合


案例1:首页最新上架&热门家居实现

①.页面内容:画像   Figure

②.组件:徽章  Badge

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>案例1:首页最新上架&热门家居实现</title>
    <!-- 支持手机端 -->
    <meta name="viewport" content="width=device-width,initial-scale=1.0">
    <!-- 引入CSS -->
    <link rel="stylesheet" href="CSS/bootstrap.css" />
    <style>
        .navbar-collapse {
            /*1代表弹性扩大占用父容器剩余部分   0代表不占用*/
            flex-grow: 0;
        }

        .active {
            font-weight: bold;
            /*加粗*/
        }

        #carouselExampleCaptions {
            margin-top: 20px;
            /*上间距*/
        }

        .aa {
            border: solid red 2px;
        }

        .bq {
            background-image: url(img/title_bj.png);
            /*背景图片*/
            background-repeat: no-repeat;
            /*不平铺*/
            color: aliceblue;
            /*文字颜色*/
            height: 30px;
            /*高度*/
            line-height: 30px;
            /*行高  垂直居中*/
            padding-left: 15px;
            /*左内间距*/
            font-size: 20px;
            /*文字大小*/
            margin-top: 15px;
            /*上外间距*/
            margin-bottom: 10px;
            /*下内间距*/
        }
    </style>
</head>

<body>
    <!-- 导航条 -->
    <nav class="navbar navbar-expand-lg navbar-light bg-light">
        <!-- 固定容器 -->
        <div class="container">
            <a class="navbar-brand" href="#">你好,欢迎来到集美家居</a>
            <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav"
                aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
                <span class="navbar-toggler-icon"></span>
            </button>
            <div class="collapse navbar-collapse" id="navbarNav">
                <ul class="navbar-nav">
                    <!-- active激活的 -->
                    <li class="nav-item active">
                        <a class="nav-link" href="#">首页<span class="sr-only">(current)</span></a>
                    </li>
                    <li class="nav-item">
                        <a class="nav-link" href="#">分类</a>
                    </li>
                    <li class="nav-item">
                        <a class="nav-link" href="#">登录</a>
                    </li>
                    <li class="nav-item">
                        <a class="nav-link ">注册</a>
                    </li>
                    <li class="nav-item">
                        <a class="nav-link ">我的购物车</a>
                    </li>
                </ul>
            </div>
        </div>
    </nav>

    <!--轮播效果 -->
    <div class="container">
        <div id="carouselExampleCaptions" class="carousel slide" data-ride="carousel">
            <ol class="carousel-indicators">
                <li data-target="#carouselExampleCaptions" data-slide-to="0" class="active"></li>
                <li data-target="#carouselExampleCaptions" data-slide-to="1"></li>
                <li data-target="#carouselExampleCaptions" data-slide-to="2"></li>
            </ol>
            <div class="carousel-inner">
                <div class="carousel-item active">
                    <img src="img/banner1.jpg" class="d-block w-100" alt="...">
                    <div class="carousel-caption d-none d-md-block">
                        <h5>雪王红红火火恍恍惚惚哈哈哈哈</h5>
                        <p>Some representative placeholder content for the first slide.</p>
                    </div>
                </div>
                <div class="carousel-item">
                    <img src="img/banner2.jpg" class="d-block w-100" alt="...">
                    <div class="carousel-caption d-none d-md-block">
                        <h5>Second slide label</h5>
                        <p>Some representative placeholder content for the second slide.</p>
                    </div>
                </div>
                <div class="carousel-item">
                    <img src="img/banner3.jpg" class="d-block w-100" alt="...">
                    <div class="carousel-caption d-none d-md-block">
                        <h5>Third slide label</h5>
                        <p>Some representative placeholder content for the third slide.</p>
                    </div>
                </div>
            </div>
            <button class="carousel-control-prev" type="button" data-target="#carouselExampleCaptions"
                data-slide="prev">
                <span class="carousel-control-prev-icon" aria-hidden="true"></span>
                <span class="sr-only">Previous</span>
            </button>
            <button class="carousel-control-next" type="button" data-target="#carouselExampleCaptions"
                data-slide="next">
                <span class="carousel-control-next-icon" aria-hidden="true"></span>
                <span class="sr-only">Next</span>
            </button>
        </div>



        <!-- 最新上架①或②-->
        <!-- 微章方式 ①-->
        <!-- <div class="h2 " style="margin-top: 10px;">
            <span class="badge badge-danger ">最新上架</span>
        </div> -->
        <!-- 背景图片方式② -->
        <div class="bq">
            最新上架
        </div>
        <div class="row">
            <div class="col">
                <!-- 画像  text-center"居中-->
                <figure class="figure  text-center">
                    <img src="img/bz01.jpg" class="figure-img img-fluid rounded" alt="...">
                    <figcaption class="figure-caption"><b>哆啦A梦的抱枕</b>&nbsp;<b>&yen;9.9</b></figcaption>
                </figure>
            </div>
            <div class="col">
                <!-- 画像  text-center"居中-->
                <figure class="figure  text-center">
                    <img src="img/bz02.jpg" class="figure-img img-fluid rounded" alt="...">
                    <figcaption class="figure-caption"><b>哆啦A梦的抱枕</b>&nbsp;<b>&yen;9.9</b></figcaption>
                </figure>
            </div>
            <div class="col">
                <!-- 画像  text-center"居中-->
                <figure class="figure  text-center">
                    <img src="img/bz03.jpg" class="figure-img img-fluid rounded" alt="...">
                    <figcaption class="figure-caption"><b>哆啦A梦的抱枕</b>&nbsp;<b>&yen;9.9</b></figcaption>
                </figure>
            </div>
            <div class="col">
                <!-- 画像  text-center"居中-->
                <figure class="figure  text-center">
                    <img src="img/bz04.jpg" class="figure-img img-fluid rounded" alt="...">
                    <figcaption class="figure-caption"><b>哆啦A梦的抱枕</b>&nbsp;<b>&yen;9.9</b></figcaption>
                </figure>
            </div>
            <div class="col">
                <!-- 画像  text-center"居中-->
                <figure class="figure  text-center">
                    <img src="img/bz05.jpg" class="figure-img img-fluid rounded" alt="...">
                    <figcaption class="figure-caption"><b>哆啦A梦的抱枕</b>&nbsp;<b>&yen;9.9</b></figcaption>
                </figure>
            </div>
        </div>


        <!-- 热门家居 -->
        <div class="bq">
            热门家居
        </div>
        <div class="row">
            <div class="col">
                <!-- 画像  text-center"居中-->
                <figure class="figure  text-center">
                    <img src="img/bz06.jpg" class="figure-img img-fluid rounded" alt="...">
                    <figcaption class="figure-caption"><b>白玫瑰的高贵</b>&nbsp;<b>&yen;89.9</b></figcaption>
                </figure>
            </div>
            <div class="col">
                <!-- 画像  text-center"居中-->
                <figure class="figure  text-center">
                    <img src="img/bz07.jpg" class="figure-img img-fluid rounded" alt="...">
                    <figcaption class="figure-caption"><b>可爱的小熊</b>&nbsp;<b>&yen;49.9</b></figcaption>
                </figure>
            </div>
            <div class="col">
                <!-- 画像  text-center"居中-->
                <figure class="figure  text-center">
                    <img src="img/bz08.jpg" class="figure-img img-fluid rounded" alt="...">
                    <figcaption class="figure-caption"><b>千纸鹤</b>&nbsp;<b>&yen;39.9</b></figcaption>
                </figure>
            </div>
            <div class="col">
                <!-- 画像  text-center"居中-->
                <figure class="figure  text-center">
                    <img src="img/bz09.jpg" class="figure-img img-fluid rounded" alt="...">
                    <figcaption class="figure-caption"><b>玻璃杯</b>&nbsp;<b>&yen;29.9</b></figcaption>
                </figure>
            </div>
            <div class="col">
                <!-- 画像  text-center"居中-->
                <figure class="figure  text-center">
                    <img src="img/bz10.jpg" class="figure-img img-fluid rounded" alt="...">
                    <figcaption class="figure-caption"><b>香薰</b>&nbsp;<b>&yen;19.9</b></figcaption>
                </figure>
            </div>
        </div>

    </div>


    <!-- 引入jQuery的类库 -->
    <!-- 再引入Bootstrap的类库 -->
    <script src="js/jquery-3.6.4.js"></script>
    <script src="js/bootstrap.js"></script>
</body>

</html>

效果图

 案例2:分类页面搜索区域Bootstrap实现&栅格框架搭建

①.栅格系统-Grid system

②.表单-Forms

③.输入框组组件-Input group

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>案例2:分类页面搜索区域Bootstrap实现&栅格框架搭建</title>
    <!-- 支持手机端 -->
    <meta name="viewport" content="width=device-width,initial-scale=1.0">
    <!-- 引入CSS -->
    <link rel="stylesheet" href="CSS/bootstrap.css" />
    <style>
        .navbar-collapse {
            /*1代表弹性扩大占用父容器剩余部分   0代表不占用*/
            flex-grow: 0;
        }

        .active {
            font-weight: bold;
            /*加粗*/
        }

        .form-group {
            width: 300px;
            /*宽度*/
            margin-left: auto;
            /*左间距自动*/
            margin-right: auto;
            /*右间距自动*/
        }

        form {
            height: 100px;
            /*高度*/
            background-color: darkgray;
            /*背景颜色*/
            padding-top: 31px;
            /*内间距 100-38=62/2*/
            margin-top: 15px;
            /*上间距*/
            margin-bottom: 15px;
            /*下间距*/
        }
    </style>
</head>

<body>
    <!-- 导航条 -->
    <nav class="navbar navbar-expand-lg navbar-light bg-light">
        <!-- 固定容器 -->
        <div class="container">
            <a class="navbar-brand" href="#">你好,欢迎来到集美家居</a>
            <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav"
                aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
                <span class="navbar-toggler-icon"></span>
            </button>
            <div class="collapse navbar-collapse" id="navbarNav">
                <ul class="navbar-nav">
                    <!-- active激活的 -->
                    <li class="nav-item active">
                        <a class="nav-link" href="#">首页<span class="sr-only">(current)</span></a>
                    </li>
                    <li class="nav-item">
                        <a class="nav-link" href="#">分类</a>
                    </li>
                    <li class="nav-item">
                        <a class="nav-link" href="#">登录</a>
                    </li>
                    <li class="nav-item">
                        <a class="nav-link ">注册</a>
                    </li>
                    <li class="nav-item">
                        <a class="nav-link ">我的购物车</a>
                    </li>
                </ul>
            </div>
        </div>
    </nav>

    <div class="container">
        <!-- 第一行搜索区域 -->
        <div class="row">
            <div class="col">
                <form>
                    <div class="form-group">
                        <div class="input-group mb-3">
                            <input type="text" class="form-control" placeholder="请输入家居关键字"
                                aria-label="Recipient's username" aria-describedby="button-addon2">
                            <div class="input-group-append">
                                <button class="btn btn btn-primary" type="button" id="button-addon2">查询</button>
                            </div>
                        </div>
                    </div>
                </form>
            </div>
        </div>

        <!-- 第 二行-->
        <div class="row">
            <!-- 左侧占三份  为分类 -->
            <div class="col-3" style="background-color: pink;">
                分类
            </div>

            <!-- 右侧占9份  为商品 -->
            <div class="col-9" style="background-color:lavender">
                商品
            </div>

        </div>

    </div>

    <!-- 引入jQuery的类库 -->
    <!-- 再引入Bootstrap的类库 -->
    <script src="js/jquery-3.6.4.js"></script>
    <script src="js/bootstrap.js"></script>
</body>

</html>

效果图

 案例3:分类页面分类列表实现&整合

①列表组组件-List group

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>案例3:分类页面分类列表实现&整合</title>
    <!-- 支持手机端 -->
    <meta name="viewport" content="width=device-width,initial-scale=1.0">
    <!-- 引入CSS -->
    <link rel="stylesheet" href="CSS/bootstrap.css" />
    <style>
        .navbar-collapse {
            /*1代表弹性扩大占用父容器剩余部分   0代表不占用*/
            flex-grow: 0;
        }

        .active {
            font-weight: bold;
            /*加粗*/
        }

        .form-group {
            width: 300px;
            /*宽度*/
            margin-left: auto;
            /*左间距自动*/
            margin-right: auto;
            /*右间距自动*/
        }

        form {
            height: 100px;
            /*高度*/
            background-color: darkgray;
            /*背景颜色*/
            padding-top: 31px;
            /*内间距 100-38=62/2*/
            margin-top: 15px;
            /*上间距*/
            margin-bottom: 15px;
            /*下间距*/
        }
    </style>
</head>

<body>
    <!-- 导航条 -->
    <nav class="navbar navbar-expand-lg navbar-light bg-light">
        <!-- 固定容器 -->
        <div class="container">
            <a class="navbar-brand" href="#">你好,欢迎来到集美家居</a>
            <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav"
                aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
                <span class="navbar-toggler-icon"></span>
            </button>
            <div class="collapse navbar-collapse" id="navbarNav">
                <ul class="navbar-nav">
                    <!-- active激活的 -->
                    <li class="nav-item ">
                        <a class="nav-link" href="#">首页<span class="sr-only">(current)</span></a>
                    </li>
                    <li class="nav-item active">
                        <a class="nav-link" href="#">分类</a>
                    </li>
                    <li class="nav-item">
                        <a class="nav-link" href="#">登录</a>
                    </li>
                    <li class="nav-item">
                        <a class="nav-link ">注册</a>
                    </li>
                    <li class="nav-item">
                        <a class="nav-link ">我的购物车</a>
                    </li>
                </ul>
            </div>
        </div>
    </nav>

    <div class="container">
        <!-- 第一行搜索区域 -->
        <div class="row">
            <div class="col">
                <form>
                    <div class="form-group">
                        <div class="input-group mb-3">
                            <input type="text" class="form-control" placeholder="请输入家居关键字"
                                aria-label="Recipient's username" aria-describedby="button-addon2">
                            <div class="input-group-append">
                                <button class="btn btn btn-primary" type="button" id="button-addon2">查询</button>
                            </div>
                        </div>
                    </div>
                </form>
            </div>
        </div>

        <!-- 第 二行-->
        <div class="row">
            <!-- 左侧占三份  为分类 -->
            <div class="col-3">
                <div class="list-group">
                    <a href="#" class="list-group-item list-group-item-action active" aria-current="true">
                        所有商品
                    </a>
                    <a href="#" class="list-group-item list-group-item-action">装饰摆件</a>
                    <a href="#" class="list-group-item list-group-item-action">布艺软饰</a>
                    <a href="#" class="list-group-item list-group-item-action">墙饰壁挂</a>
                    <a href="#" class="list-group-item list-group-item-action">蜡艺香薰</a>
                    <a class="list-group-item list-group-item-action disabled">创意家居</a>
                </div>
            </div>

            <!-- 右侧占9份  为商品 -->
            <div class="col-9">

                <!--大PC一行4列  中PC一行3列  平板一行2列  -->
                <div class="row">
                    <div class="col-lg-3 col-md-4 col-sm-6">
                        <figure class="figure  text-center">
                            <img src="img/bz01.jpg" class="figure-img img-fluid rounded" alt="...">
                            <figcaption class="figure-caption"><b>白玫瑰的高贵</b>&nbsp;<b>&yen;89.9</b></figcaption>
                        </figure>
                    </div>
                    <div class="col-lg-3 col-md-4 col-sm-6">
                        <figure class="figure  text-center">
                            <img src="img/bz02.jpg" class="figure-img img-fluid rounded" alt="...">
                            <figcaption class="figure-caption"><b>白玫瑰的高贵</b>&nbsp;<b>&yen;89.9</b></figcaption>
                        </figure>
                    </div>
                    <div class="col-lg-3 col-md-4 col-sm-6">
                        <figure class="figure  text-center">
                            <img src="img/bz03.jpg" class="figure-img img-fluid rounded" alt="...">
                            <figcaption class="figure-caption"><b>白玫瑰的高贵</b>&nbsp;<b>&yen;89.9</b></figcaption>
                        </figure>
                    </div>
                    <div class="col-lg-3 col-md-4 col-sm-6">
                        <figure class="figure  text-center">
                            <img src="img/bz04.jpg" class="figure-img img-fluid rounded" alt="...">
                            <figcaption class="figure-caption"><b>白玫瑰的高贵</b>&nbsp;<b>&yen;89.9</b></figcaption>
                        </figure>
                    </div>
                    <div class="col-lg-3 col-md-4 col-sm-6">
                        <figure class="figure  text-center">
                            <img src="img/bz05.jpg" class="figure-img img-fluid rounded" alt="...">
                            <figcaption class="figure-caption"><b>白玫瑰的高贵</b>&nbsp;<b>&yen;89.9</b></figcaption>
                        </figure>
                    </div>
                    <div class="col-lg-3 col-md-4 col-sm-6">
                        <figure class="figure  text-center">
                            <img src="img/bz06.jpg" class="figure-img img-fluid rounded" alt="...">
                            <figcaption class="figure-caption"><b>白玫瑰的高贵</b>&nbsp;<b>&yen;89.9</b></figcaption>
                        </figure>
                    </div>
                    <div class="col-lg-3 col-md-4 col-sm-6">
                        <figure class="figure  text-center">
                            <img src="img/bz07.jpg" class="figure-img img-fluid rounded" alt="...">
                            <figcaption class="figure-caption"><b>白玫瑰的高贵</b>&nbsp;<b>&yen;89.9</b></figcaption>
                        </figure>
                    </div>
                    <div class="col-lg-3 col-md-4 col-sm-6">
                        <figure class="figure  text-center">
                            <img src="img/bz08.jpg" class="figure-img img-fluid rounded" alt="...">
                            <figcaption class="figure-caption"><b>白玫瑰的高贵</b>&nbsp;<b>&yen;89.9</b></figcaption>
                        </figure>
                    </div>

                </div>
            </div>
        </div>

        <!-- 引入jQuery的类库 -->
        <!-- 再引入Bootstrap的类库 -->
        <script src="js/jquery-3.6.4.js"></script>
        <script src="js/bootstrap.js"></script>
</body>

</html>

效果图

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/442104.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

C learning_7

目录 1.for循环 1.虽然while循环和for循环本质上都可以实现循环&#xff0c;但是它们在使用方法和场合上还是有一些区别的。 2.while循环中存在循环的三个必须条件&#xff0c;但是由于风格的问题使得三个部分很可能偏离较远&#xff0c;这样 查找修改就不够集中和方便。所以…

Vue2-黑马(十四)

目录&#xff1a; &#xff08;1&#xff09;实战-crud &#xff08;2&#xff09;实战--crud查询和删除 &#xff08;3&#xff09; 实战-crud-修改 &#xff08;1&#xff09;实战-crud 服务端的接口&#xff1a; 前端需要修改的地方&#xff1a;业务简单的一半需要改3个…

Vue 组件

文章目录 Vue 组件全局组件局部组件Prop动态 PropProp 验证 自定义事件 Vue 组件 组件&#xff08;Component&#xff09;是 Vue.js 最强大的功能之一。 组件可以扩展 HTML 元素&#xff0c;封装可重用的代码。 组件系统让我们可以用独立可复用的小组件来构建大型应用&#x…

Go程序开发快速入门

当进行Go程序开发时&#xff0c;需要注意以下几点&#xff1a; 1、代码可读性&#xff1a;尽可能使用有意义的变量名和注释&#xff0c;确保代码易于理解和维护。 2、错误处理&#xff1a;Go语言有很好的错误处理机制&#xff0c;应该合理地处理错误&#xff0c;以便于排除错…

【运动规划算法项目实战】路径规划中常用的插值方法

文章目录 简介一、线性插值代码实现二、三次样条插值三、B样条插值四、贝塞尔曲线插值总结简介 常见用于处理路径平滑的插值算法主要包括线性插值、三次样条插值、B样条插值和贝塞尔曲线插值等,下面分别介绍它们的优缺点和使用场景。 一、线性插值 线性插值是最简单的插值方…

ROS——Teb算法的优化

一、简介 “TEB”全称Time Elastic Band&#xff08;时间弹性带&#xff09;Local Planner&#xff0c;该方法针对全局路径规划器生成的初始轨迹进行后续修正(modification)&#xff0c;从而优化机器人的运动轨迹&#xff0c;属于局部路径规划。 关于eletic band&#xff08;橡…

Java 依赖注入(DI)

只要做过 Java 一段时间&#xff0c;基本上都会遇到这个问题。 Dependency Injection &#xff08;DI&#xff09;中文称之为依赖注入。 都说了 Spring 的关键部分就是 Dependency Injection &#xff08;DI&#xff09;&#xff0c;但是什么是依赖&#xff0c;为什么要注入&…

AirServer2023最新免费苹果电脑投屏工具

AirServer是一个Mac专用投屏工具&#xff0c;功能强大&#xff0c;并且可以通过网络和其他平台同步视频内容。可以使用多个设备进行投屏&#xff0c;快速查看同一局域网内的视频。支持的设备&#xff1a;苹果系统。支持 Windows、 Mac、 Android、 iOS、 windows平台。 1、支持…

用腾讯轻联,打通草料二维码与其他应用的连接

一、功能介绍 腾讯轻联是腾讯云推出的“应用连接器”&#xff0c;无需编程&#xff0c;实现多应用的连接。草料二维码作为首批入驻腾讯轻联的合作伙伴和腾讯团队进行了深度协同&#xff0c;提供给用户以下能力&#xff1a; 1.快速对接主流应用 实现企业微信、钉钉、腾讯文档…

基于AT89C52单片机的电子密码锁设计

点击链接获取Keil源码与Project Backups仿真图: https://download.csdn.net/download/qq_64505944/87688544?spm=1001.2014.3001.5503 源码获取 主要内容: 设计一个简易的电子密码锁,并进行仿真实验,该系统能够进行密码输入功能、上锁功能、在锁合状态下通过输入密码进行…

Java并发编程 —— 延迟队列DelayQueue源码解析

一、什么是DelayQueue DelayQueue是一个支持并发的无界延迟队列&#xff0c;队列中的每个元素都有个预定时间&#xff0c;当线程从队列获取元素时&#xff0c;只有到期元素才会出队列&#xff0c;没有到期元素则阻塞等待。队列头元素是最快要到期的元素。因此DelayQueue可用于…

[java聊天室]多个客户端与服务器说话多线程(二)

多客户端链接 之前(java聊天室一)只有第一个连接的客户端可以与服务端说话。 原因: 服务端只调用过一次accept方法&#xff0c;因此只有第一个客户端链接时服务端接受了链接并返回了Socket,此时可以与其交互。 而第二个客户端建立链接时&#xff0c;由于服务端没有再次调用…

【Hello Linux】线程池

作者&#xff1a;小萌新 专栏&#xff1a;Linux 作者简介&#xff1a;大二学生 希望能和大家一起进步 本篇博客简介&#xff1a;简单介绍linux中线程池概念 线程池 Linux线程池线程池的概念线程池的优点线程池的应用场景线程池实现 Linux线程池 线程池的概念 线程池是一种线程…

PyTorch深度学习实战 | 高斯混合模型聚类原理分析

01、问题描述 为理解高斯混合模型解决聚类问题的原理&#xff0c;本实例采用三个一元高斯函数混合构成原始数据&#xff0c;再采用GMM来聚类。 1) 数据 三个一元高斯组件函数可以采用均值和协方差表示如表1所示&#xff1a; ▍表1 三个一元高斯组件函数的均值和协方差 每个高斯…

git的使用——操作流程

一、什么是git git是一个开源的分布式版本控制软件&#xff0c;能够有效并高效的处理很小到非常大的项目。 二、添加SSH公钥 安装下载后&#xff0c;会发现鼠标右击&#xff0c;会出现 Git Bash Here 这个选项&#xff0c;如图所示&#xff0c;点击进入 1.打开git窗口后&…

018:Mapbox GL加载Google地图(影像瓦片图)

第018个 点击查看专栏目录 本示例的目的是介绍演示如何在vue+mapbox中加载google地图。 直接复制下面的 vue+mapbox源代码,操作2分钟即可运行实现效果 文章目录 示例效果配置方式示例源代码(共80行)相关API参考:专栏目标示例效果 配置方式 1)查看基础设置:https://xia…

鉴智机器人重磅发布双目智驾解决方案,新一代全系智驾产品线亮相上海车展

4月18日&#xff0c;以「拥抱汽车行业新时代」为主题的2023上海车展正式拉开帷幕。以视觉3D理解为核心的下一代自动驾驶系统提供商鉴智机器人&#xff0c;携全新升级的智驾产品线首次亮相车展&#xff0c;重磅发布基于AI的双目立体视觉智驾方案。 凭借双目立体视觉系统的差异化…

智能洗地机好用吗?值得入手的洗地机推荐

洗地机是一款高效的地面清洁设备&#xff0c;不仅可以很好清理地面不同形态的干湿垃圾&#xff0c;还减少了人工和水资源的浪费&#xff0c;是我们日常生活中必不可少的清洁工具。作为以一位评测博主&#xff0c;很多朋友咨询我在选购洗地机时应该注意哪些要点&#xff0c;有哪…

记一次生产要我狗命的问题

问题起因&#xff1a;引入disruptor框架 简单理解就是生产消费者模式 用来支持高并发 先说问题和改正 再展开 问题&#xff1a;没有当时的截图了 直接描述吧 问题就是cpu占用过高 居高不下的那种 排查&#xff1a;就是看线程名字和占用的大概 再根据近期发布的东西 再根据本地…

学系统集成项目管理工程师(中项)系列08b_合同管理(下)

1. 项目变更约定 1.1. 合同生效后&#xff0c;当事人不得因姓名、名称的变更或者法定代表人、负责人、承办人的变动而不履行合同义务 2. 违约责任的承担方式 2.1. 继续履行 2.2. 采取补救措施 2.3. 赔偿损失 2.4. 支付约定违约金或定金 3. 注意事项 3.1. 当事人的法律资…