2024-4-12-实战:商城首页(下)

news2024/11/26 4:44:32

个人主页:学习前端的小z
个人专栏:HTML5和CSS3悦读
本专栏旨在分享记录每日学习的前端知识和学习笔记的归纳总结,欢迎大家在评论区交流讨论!


文章目录

  • 作业
    • 小结

作业

在这里插入图片描述



.bg-backward {
    width: 60px; height: 60px;
    background: url('../images/css_sprites.png') -187px -10px;
}


.bg-cart {
    width: 25px; height: 25px;
    background: url('../images/css_sprites.png') -10px -183px;
}


.bg-envelope {
    width: 26px; height: 20px;
    background: url('../images/css_sprites.png') -10px -228px;
}


.bg-dribble {
    width: 20px; height: 21px;
    background: url('../images/css_sprites.png') -267px -109px;
}


.bg-facebook {
    width: 11px; height: 20px;
    background: url('../images/css_sprites.png') -10px -268px;
}


.bg-forward {
    width: 60px; height: 60px;
    background: url('../images/css_sprites.png') -187px -90px;
}


.bg-logo {
    width: 157px; height: 153px;
    background: url('../images/css_sprites.png') -10px -10px;
}


.cart {
    width: 13px; height: 20px;
    background: url('../images/css_sprites.png') -267px -188px;
}


.bg-msn {
    width: 16px; height: 16px;
    background: url('../images/css_sprites.png') -100px -228px;
}


.bg-phone {
    width: 21px; height: 29px;
    background: url('../images/css_sprites.png') -267px -10px;
}


.bg-rss {
    width: 16px; height: 16px;
    background: url('../images/css_sprites.png') -136px -228px;
}


.bg-telephone {
    width: 18px; height: 30px;
    background: url('../images/css_sprites.png') -267px -59px;
}


.bg-slider {
    width: 48px; height: 9px;
    background: url('../images/css_sprites.png') -55px -183px;
}


.bg-vimeo {
    width: 21px; height: 18px;
    background: url('../images/css_sprites.png') -267px -150px;
}


.bg-twitter {
    width: 24px; height: 16px;
    background: url('../images/css_sprites.png') -56px -228px;
}



.bg-founder-team {
    width: 13px; height: 20px;
    background: url('../images/css_sprites.png') -267px -188px;
}

.bg-dribble {
    width: 20px; height: 21px;
    background: url('../images/css_sprites2.png') -10px -10px;
}


.bg-msn {
    width: 16px; height: 16px;
    background: url('../images/css_sprites2.png') -51px -51px;
}


.bg-twitter {
    width: 24px; height: 16px;
    background: url('../images/css_sprites2.png') -50px -10px;
}


.bg-vimeo {
    width: 21px; height: 18px;
    background: url('../images/css_sprites2.png') -10px -51px;
}


.bg-facebook {
    width: 11px; height: 20px;
    background: url('../images/css_sprites2.png') -94px -46px;
}


.bg-rss {
    width: 16px; height: 16px;
    background: url('../images/css_sprites2.png') -94px -10px;
}

.bg-envelope {
    width: 26px; height: 20px;
    background: url('../images/css_sprites3.png') -51px -10px;
}


.bg-phone {
    width: 21px; height: 29px;
    background: url('../images/css_sprites3.png') -10px -10px;
}


.bg-telephone {
    width: 18px; height: 30px;
    background: url('../images/css_sprites3.png') -10px -59px;
}
* {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Microsoft YaHei", "Heiti SC", tahoma, arial, "Hiragino Sans GB", "宋体", sans-serif;
}

a {
    color: white;
    text-decoration: none;
}

ul {
    list-style: none;
}

.auto-center {
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.full-center {
    min-width: 1000px;
}

.pull-left {
    float: left;
}

.pull-right {
    float: right;
}

.clearfix::after {
    content: '';
    display: block;
    clear: both;
}

.text-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

在这里插入图片描述

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <meta name="keywords" content="商城首页">
        <meta name="description" content="商城首页">
        <title>商城首页</title>
        <link rel="stylesheet" href="./css/common.css">
        <link rel="stylesheet" href="./css/sprites.css">
        <style>
            .header, .copy{
                background-color: #2a2b2c;
                font-size: 14px;
            }

            .header .item {
                display: inline-block;
                line-height: 44px;
                margin-left: 40px;
            }

            .header .item>* {
                vertical-align: middle;
            }

            .header .icon {
                display: inline-block;
            }
            
            .banner {
                background-color: #35c3d9;
            }

            .banner>.auto-center {
                position: relative;
                height: 500px;
            }

            .banner .logo {
                width: 180px;
                height: 106px;
                background: url("./images/1.png") center / cover no-repeat;
                box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
            }

            .banner .nav {
                box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
            }

            .banner .nav a{
                display: inline-block;
                width: 103px;
                text-align: center;
                line-height: 106px;
            }

            .banner .nav>li {
                float: left;
            }

            .banner .clothes {
                position: absolute;
                bottom: 18px;
                left: 0;
            }

            .banner .title {
                position: absolute;
                width: 413px;
                bottom: 141px;
                right: 0;
                font-size: 60px;
                font-weight: normal;
                color: white;
                text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.4);
                text-align: center;
            }

            .banner .backward, .banner .forward{
                position: absolute;
                top: 50%;
                margin-top: -30px;
            }

            .banner .backward {
                left: -128px;
            }

            .banner .forward {
                right: -128px;
            }

            .big-title {
                margin-top: 30px;
            }

            .big-title>.pull-left {
                padding-left: 49px;
                font-weight: normal;
                color: #434343;
                font-size: 60px;
            }

            .big-title>.pull-right {
                width: 175px;
                line-height: 73px;
                background-color: #35c3d9;
                font-size: 60px;
                text-align: center;
                margin-right: 30px;
            }

            .category {
                margin-top: 30px;
                width: 1050px;
                font-size: 36px;
                color: #ffffff;
            }

            .category>.pull-left {
                position: relative;
                width: 300px;
                height: 150px;
                margin-left: 25px;
                margin-right: 25px;
            }

            .category>.pull-left>span {
                position: absolute;
                line-height: 40px;
                left: 24px;
                top: 50%;
                margin-top: -40px;
            }

            .products, .brands {
                margin-top: 50px;
            }

            .products .title, .brands .title{
                position: relative;
                padding-bottom: 26px;
                border-bottom: 1px solid #e5e4e4;
                font-size: 30px;
                color:#1e1e20;
            }

            .brands .title {
                border-bottom: none;
            }

            .products .title-btn,  .brands .title-btn{
                color: white;
                background-color: #35c4da;
                padding: 0 28px;
                margin-left: 30px;
            }

            .products h3 {
                font-size: inherit;
            }

            .products .bottom-icon {
                position: absolute;
                left: 0;
                bottom: -10px;
                width: 60px;
                height: 20px;
                background: #35c4da url(./images/6.png) center / 80% no-repeat;
            }

            .products .product-list {
                margin-top: 30px;
                width: 1068px;
                margin-left: -34px;
                font-size: 0;
            }

            .products .product-list>li {
                display: inline-block;
                width: 288px;
                margin: 0 34px 44px;
                font-size: 24px;
                border: 1px solid #e7e7e7;
                box-sizing: border-box;
                color: #858585;    
            }

            .products .img-box {
                padding: 19px 38px;
                border-bottom: 1px solid #e5e4e4;
            } 
            .products .img-box > .img {
                display: block;
                height: 210px;
                background-color: black;
            }

            .products .desc {
                display: block;
                padding: 13px 16px 0;
                font-size: 24px;
                color: #858585;
            }

            .products .action {
                padding: 22px 21px 28px;
            }

            .products .price, .products .add-cart-btn {
                display: inline-block;
                vertical-align: middle;
            }

            .products .price {
                font-size: 30px;
            }

            .products .add-cart-btn {
                color: white;
                background-color: #35c4da;
                padding: 9px 6px;
                font-size: 18px;
                border-radius: 5px;
            }

            .fotter {
                box-shadow: 0px -3px 15px 0px rgba(0,0,0,0.1);
                margin-top: 65px;
            }

            .footer .column {
                float: left;
                padding-top: 34px;
                width: 250px;
                box-sizing: border-box;
                font-size: 13px;
            }

            .footer .title {
                font-size: 24px;
                color: #858585;
                line-height: 50px;
            }

            .footer .desc {
                padding: 10px 0;
            }

            .footer .icons {
                letter-spacing: 10px;
            }

            .footer .icons>span {
                display: inline-block;
                vertical-align: middle;
            }

            .footer .column {
                float: left;
                padding-top: 34px;
                width: 250px;
                box-sizing: border-box;
                font-size: 13px;   
            }

            .footer .title {
                font-size: 24px;
                color: #858585;
                line-height: 50px;
            }

            .footer .date-list>li {
                padding: 15px 0;
                border-bottom: 1px dashed #e5e4e4;
            }

            .footer .concat-list>li {
                line-height: 40px;
            }

            .footer .icon {
                display: inline-block;
                vertical-align: middle;
            }

            .footer .input-row {
                margin-top: 10px;
            }

            .footer .input {
                display: block;
                width: 100%;
                outline: none;
                border: none;
                line-height: 36px;
                font-size: 20px;
                padding-left: 18px;
                border-bottom: 1px solid #ccc;
                background-color: #fafafa;
                box-sizing: border-box;
            }

            .footer .submit {
                background-color: #35c4da;
                padding: 12px 38px;
                outline: none;
                border: none;
                color: white;
            }

         

            .bottom {
                display: inline-block;
                padding: 13px 13px 1px 4px;
                font-size: 14px;
                line-height: 50px;
                box-shadow: 0px 1px 0px 0px 
            }
            .bottom>span {
                line-height: 13px;
                margin-right: 15px;
            }

            .copy {
                color:white;
                /* width: 1400px; */
	            /* height: 27px; */
            }

        
        </style>
    </head>
    <body>
        <div class="header full-center">
            <div>
                <div class="auto-center">
                <div class="pull-right">
                    <a class="item" href="#">
                        <span>结账</span>
                    </a>
                    <a class="item" href="#">
                        <span class="icon bg-founder-team"></span>
                        <span>我的账户</span>
                    </a>
                    <a class="item" href="#">
                        <span class="icon bg-cart"></span>
                        <span>购物车(3)</span>
                    </a>
                </div>
            </div>
            </div>
        </div>
        <div class="banner full-center">
            <div class="auto-center clearfix">
                <a class="logo pull-left" href="#">
                </a>

                <ul class="nav pull-right clearfix">
                    <li>
                        <a href="#">主页</a>
                    </li>
                    <li>
                        <a href="#">新闻</a>
                    </li>
                    <li>
                        <a href="#">产品</a>
                    </li>
                    <li>
                        <a href="#">特征</a>
                    </li>
                    <li>
                        <a href="#">联系人</a>
                    </li>
                </ul>

                <img class="clothes" src="./images/2.png">

                <h2 class="title">查看我们最新的时装</h2>

                <img class="backward" src="./images/backward.png" height="60">

                <img class="forward" src="./images/forward.png" height="60">
            </div>
        </div>
        <div class="big-title auto-center clearfix">
            <h1 class="pull-left">查看我们独特的时尚</h1>
            <a class="pull-right" href="#">方法</a>
        </div>

        <div class="category auto-center clearfix">
            <div class="pull-left" style="background: #35c3d9 url(./images/3.png) 90% center no-repeat;">
                <span>出售<br>60%</span>
            </div>
            <div class="pull-left" style="background: #91b900 url(./images/4.png) 90% center no-repeat;">
                <span>自由<br>航运的</span>
            </div>
            <div class="pull-left" style="background: #f356b3 url(./images/5.png) 90% center no-repeat;">
                <span>24/7<br>支持</span>
            </div>
        </div>
            <div class="products auto-center">
               <div class="title">
                    <h3>
                        <span>特色</span>
                        <span class="title-btn">商品</span>
                     </h3>
                     <div class="bottom-icon"></div>
               </div>
               <ul class="product-list">
                    <li>
                        <div class="img-box">
                            <div class="img"></div>
                        </div>
                        <a class="desc text-ellipsis" href="#">女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤</a>
                   
                            <div  class="clearfix action"> 
                                <span class="price pull-left">¥35.99</span>
                                <span class="add-cart-btn pull-right">加入购物车</span>
                            </div>
                        
                    </li>
                    <li>
                        <div class="img-box">
                            <div class="img"></div>
                        </div>
                        <a class="desc text-ellipsis" href="#">女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤</a>
                   
                            <div  class="clearfix action"> 
                                <span class="price pull-left">¥35.99</span>
                                <span class="add-cart-btn pull-right">加入购物车</span>
                            </div>
                    </li>
                    <li>
                        <div class="img-box">
                            <div class="img"></div>
                        </div>
                        <a class="desc text-ellipsis" href="#">女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤</a>
                   
                            <div  class="clearfix action"> 
                                <span class="price pull-left">¥35.99</span>
                                <span class="add-cart-btn pull-right">加入购物车</span>
                            </div>
                    </li>
               </ul>
            </div>
        <div>
            <div class="products auto-center">
                <div class="title">
                     <h3>
                         <span>最新上架的</span>
                         <span class="title-btn">商品</span>
                      </h3>
                      <div class="bottom-icon"></div>
                </div>
                <ul class="product-list">
                     <li>
                         <div class="img-box">
                             <div class="img"></div>
                         </div>
                         <a class="desc text-ellipsis" href="#">女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤</a>
                    
                             <div  class="clearfix action"> 
                                 <span class="price pull-left">¥35.99</span>
                                 <span class="add-cart-btn pull-right">加入购物车</span>
                             </div>
                         
                     </li>
                     <li>
                         <div class="img-box">
                             <div class="img"></div>
                         </div>
                         <a class="desc text-ellipsis" href="#">女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤</a>
                    
                             <div  class="clearfix action"> 
                                 <span class="price pull-left">¥35.99</span>
                                 <span class="add-cart-btn pull-right">加入购物车</span>
                             </div>
                     </li>
                     <li>
                         <div class="img-box">
                             <div class="img"></div>
                         </div>
                         <a class="desc text-ellipsis" href="#">女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤</a>
                    
                             <div  class="clearfix action"> 
                                 <span class="price pull-left">¥35.99</span>
                                 <span class="add-cart-btn pull-right">加入购物车</span>
                             </div>
                     </li>
                     <li>
                        <div class="img-box">
                            <div class="img"></div>
                        </div>
                        <a class="desc text-ellipsis" href="#">女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤</a>
                   
                            <div  class="clearfix action"> 
                                <span class="price pull-left">¥35.99</span>
                                <span class="add-cart-btn pull-right">加入购物车</span>
                            </div>
                    </li>
                    <li>
                        <div class="img-box">
                            <div class="img"></div>
                        </div>
                        <a class="desc text-ellipsis" href="#">女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤</a>
                   
                            <div  class="clearfix action"> 
                                <span class="price pull-left">¥35.99</span>
                                <span class="add-cart-btn pull-right">加入购物车</span>
                            </div>
                    </li>
                    <li>
                        <div class="img-box">
                            <div class="img"></div>
                        </div>
                        <a class="desc text-ellipsis" href="#">女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤</a>
                   
                            <div  class="clearfix action"> 
                                <span class="price pull-left">¥35.99</span>
                                <span class="add-cart-btn pull-right">加入购物车</span>
                            </div>
                    </li>
                    <li>
                        <div class="img-box">
                            <div class="img"></div>
                        </div>
                        <a class="desc text-ellipsis" href="#">女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤</a>
                   
                            <div  class="clearfix action"> 
                                <span class="price pull-left">¥35.99</span>
                                <span class="add-cart-btn pull-right">加入购物车</span>
                            </div>
                    </li>
                    <li>
                        <div class="img-box">
                            <div class="img"></div>
                        </div>
                        <a class="desc text-ellipsis" href="#">女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤女式T恤</a>
                   
                            <div  class="clearfix action"> 
                                <span class="price pull-left">¥35.99</span>
                                <span class="add-cart-btn pull-right">加入购物车</span>
                            </div>
                    </li>
                   
                </ul>
             </div>
             <div class="brands auto-center">
                <div class="title">
                    <h3>
                        <span>主要的</span>
                        <span class="title-btn">品牌</span>
                     </h3>
                </div>
                <div class="clearfix">
                    <a class="pull-left" href="#">
                        <img src="./images/brand1.png" height="131">
                    </a>
                    <a class="pull-left" href="#">
                        <img src="./images/brand2.png" height="131">
                    </a>
                    <a class="pull-left" href="#">
                        <img src="./images/brand3.png" height="131">
                    </a>
                    <a class="pull-left" href="#">
                        <img src="./images/brand4.png" height="131">
                    </a>
                    <a class="pull-left" href="#">
                        <img src="./images/brand5.png" height="131">
                    </a>
                    <a class="pull-left" href="#">
                        <img src="./images/brand6.png" height="131">
                    </a>
                </div>
             </div>
             <div class="footer full-center">
                <div class="auto-center clearfix">
                    <div class="column">
                        <h4 class="title">关于我们的点点滴滴</h4>
                        <p class="desc">但让我们想想。<br>没有一个生命是来自国外的精英儿童。<br>所以让他受苦吧。<br>他很荣幸能帮助他。</p>
                        <h4 class="title">跟着我们</h4>
                        <div class="icons">
                            <span class="bg-facebook"></span>
                            <span class="bg-twitter"></span>
                            <span class="bg-rss"></span>
                            <span class="bg-vimeo"></span>
                            <span class="bg-dribble"></span>
                            <span class="bg-msn"></span>
                        </div>
                    </div>
                    <div class="column">
                        <h4 class="title">档案</h4>
                        <ul class="date-list">
                            <li>2012年3月</li>
                            <li>2012年3月</li>
                            <li>2012年3月</li>
                            <li>2012年3月</li>
                        </ul>
                    </div>
                    <div class="column">
                        <h4 class="title">联系我们</h4>
                        <ul class="concat-list">
                            <li>
                                <span class="icon bg-envelope"></span>
                                <span>info@premiumcoding.com</span>
                            </li>
                            <li>
                                <span class="icon bg-phone"></span>
                                <span>800 756 156</span>
                            </li>
                            <li>
                                <span class="icon bg-telephone"></span>
                                <span>+386408007561</span>
                            </li>
                        </ul>
                    </div>
                    <div class="column">
                        <h4 class="title">签署新闻稿</h4>
                        <form action="#" method="post">
                            <div class="input-row">
                                <input class="input" type="text" name="name" placeholder="名字">
                            </div>
                            <div class="input-row">
                                <input class="input" type="text" name="email1" placeholder="电子邮件">
                            </div>
                            <div class="input-row">
                                <input class="submit" type="submit" value="订阅">
                            </div>
                        </form>
                    </div>
                </div>
             </div>
             
                <div class="copy full-center">
                    <div class="auto-center clearfix">
                       <div class= "bottom pull-right">
                        Elegantica &copy;2012 by PremiumCoding | All Rights Reserved
                       </div>
                    
                        <div class= "bottom pull-left">
                        <span>主页</span>
                        <span>投资组合</span>
                        <span>网站地图</span>
                        <span>联系人</span>
                        </div>
                    </div>           
                </div>
    </body>
</html>

小结

从给定的一个ui设计图中,可以找到对应的一些css样式,主要利用布局思维将盒子一层层嵌套实现,还包括了定位、浮动以及精灵图。

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

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

相关文章

uni-app的页面中使用uni-map-common的地址解析(地址转坐标)功能,一直报请求云函数出错

想在uni-app的页面中使用uni-map-common的地址解析&#xff08;地址转坐标&#xff09;功能&#xff0c;怎么一直报请求云函数出错。 不看控制台啊,弄错了控制台&#xff0c;就说怎么一直没有打印出消息。 所以开始换高德地图的&#xff0c;昨天申请了两个 一开始用的第二个web…

物理服务器与云服务器的租用对比

​ 物理服务器&#xff1a;每个基于 Web 的应用程序都依赖于一个服务器&#xff0c;该服务器提供网络中的数据存储&#xff0c;并可根据请求提供给客户端。例如&#xff0c;用户使用浏览器访问 Web 应用程序。服务器可确保托管客户端可以使用该硬件组件。与其他托管可能性相比&…

【SpringBoot整合系列】SpringBoot整合Shiro——权限控制

目录 安全框架?安全框架都有哪些&#xff1f; 什么是RBAC?ShiroShiro核心组件Shiro的运行机制 SpringBoot整合Shiro整合思路1.引入依赖2.项目结构及配置3.创建前端页面index.jsplogin.jsp 4.自定义Realm5.自定义配置类6.启动测试 认证和退出1.在index.jsp添加a标签2.Controll…

Java | Leetcode Java题解之第26题删除有序数组中的重复项

题目&#xff1a; 题解&#xff1a; class Solution {public int removeDuplicates(int[] nums) {int n nums.length;if (n 0) {return 0;}int fast 1, slow 1;while (fast < n) {if (nums[fast] ! nums[fast - 1]) {nums[slow] nums[fast];slow;}fast;}return slow;}…

8路HDMI+8路AV高清视频流媒体编码器JR-3218HD

产品简介&#xff1a; JR-3218HD高清音视频编码产品支持8路高清HDMI音视频采集功能&#xff0c;8路AV视频采集功能&#xff0c;8路3.5MM独独立音频接口采集功能。编码输出双码流H.264格式&#xff0c;音频MP3/AAC格式。编码码率可调&#xff0c;画面质量可控制。支持HTTP/RTSP…

2024年蓝桥杯40天打卡总结

2024蓝桥杯40天打卡总结 真题题解其它预估考点重点复习考点时间复杂度前缀和二分的两个模板字符串相关 String和StringBuilderArrayList HashSet HashMap相关蓝桥杯Java常用算法大数类BigInteger的存储与运算日期相关考点及函数质数最小公倍数和最大公约数排序库的使用栈Math类…

服务器代理

服务器代理 配置&#xff1a;64G内存1 3090&#xff08;24g&#xff09;1P4000&#xff08;8g&#xff09; SSH连接 工作路径&#xff1a;/home/ubuntu/workspace/python Anaconda路径&#xff1a;/home/Ubuntu 1.在工作路径下创建自己的文件夹作为workspace 2.以用户ubunbtu登…

设备树下的 LED 驱动实验

提示&#xff1a;文章写完后&#xff0c;目录可以自动生成&#xff0c;如何生成可参考右边的帮助文档 文章目录 前言一、修改设备树文件2创建设备树节点并获取属性 前言 提示&#xff1a;这里可以添加本文要记录的大概内容&#xff1a; 例如&#xff1a;随着人工智能的不断发…

《师兄啊师兄》:玄机科技打造国漫新高峰,IP运营再显神力

在这个国漫蓬勃发展的时代&#xff0c;玄机科技再次以其超凡的制作水准和出色的IP运营能力&#xff0c;为我们带来了一部国漫新经典——《师兄啊师兄》。这部作品不仅在画面、剧情上达到了行业新高度&#xff0c;更在IP运营上展现出了其强大的实力与前瞻性。 《师兄啊师兄》的画…

easyui combobox下拉框组件输入检索全模糊查询

前引&#xff1a; easyui下拉组件&#xff08;combobox&#xff09;&#xff0c;输入检索下拉内容&#xff0c;是默认的右模糊匹配&#xff0c;而且不支持选择。因业务要求需要做成全模糊查询&#xff0c;目前网上搜索有两种方案&#xff1a; 1.修改easyui源码&#xff0c;这个…

Redis搭建主从

Redis搭建主从: 1:拉取Redis镜像 docker pull redis2:创建主从对应的目录结构 3:对redis6379.log,redis6380.log,redis6381.log进行授权 chmod 777 redis6379.log chmod 777 redis6380.log chmod 777 redis6381.log4:修改主(master)的配置文件 5:创建主(master) redis_6379 …

基于Whisper语音识别的实时视频字幕生成 (一): 流式显示视频帧和音频帧

Whishow Whistream&#xff08;微流&#xff09;是基于Whisper语音识别的的在线字幕生成工具&#xff0c;支持rtsp/rtmp/mp4等视频流在线语音识别 1. whishow介绍 whishow&#xff08;微秀&#xff09;是python实现的在线音视频流播放器&#xff0c;支持rtsp/rtmp/mp4等流式输…

设计模式——命令模式14

命令模式&#xff1a;用构造函数将 命令实现者 传递给 调用者。 例如下面 小贩进货 设计模式&#xff0c;一定要敲代码理解 命令抽象 /***文具* */ public interface Stationery {void make(); }命令实现类 public class Pencil implements Stationery{private Producer pr…

LLamaSharp加载llama.cpp转化好的模型

新建.net8控制台项目 安装依赖包 LLamaSharp和LLamaSharp.Backend.Cpu 准备好转化好的模型 没有的话参考这篇文章https://blog.csdn.net/qq_36437991/article/details/137248622 编写代码 using LLama; using LLama.Common; using LLama.Native;namespace llamasharpstu…

视频这么长,有必要浪费时间看吗?#知识社群N3

在这个信息爆炸的时代&#xff0c;我们每天都会被大量的二手信息包围。不论是社交媒体、新闻还是网络论坛&#xff0c;处处充斥着别人的观点和总结。但这些二手信息真的能够代替我们去源头获取内容吗&#xff1f;信息的片面性、观点的偏颇乃至于事实的曲解&#xff0c;不断地在…

FRDM-MCXN947开发板之RGB灯

一、背景 RGB LED&#xff1a;通过红、绿、蓝三种颜色组合发光的LED&#xff0c;可以理解由三个不同发光属性的LED组成&#xff0c;这个是LCD平板显示原理的基础&#xff0c;一个LED相当于屏幕上面的一个像素 FRDM-MCXN947集成了一块RGB LED&#xff0c;它由三个GPIO口驱动&am…

【C++】详解类的--封装思想(让你丝滑的从C语言过度到C++!!)

目录 一、前言 二、【面向过程】 与 【面向对象】 三、结构体 与 类 &#x1f34e;C中结构体的变化 &#x1f349;C中结构体的具体使用 &#x1f350;结构体 --> 类 ✨类-----语法格式&#xff1a; ✨类的两种定义方式&#xff1a; 四、类的访问限定符及封装【⭐】 …

海外媒体发稿:4种旅游业媒体套餐助你宣发推广-华媒舍

在现代社会中&#xff0c;旅游业发展迅速&#xff0c;竞争也变得日益激烈。为了让自己的旅游产品或服务脱颖而出&#xff0c;宣传和推广变得至关重要。有着强大传播力的媒体平台成为了旅游行业的一项重要资源。为了更好地推广旅游业&#xff0c;提高其影响力&#xff0c;有许多…

如何做好软件平台的全生命周期管理?

一、为何需生命周期管理 做好软件平台的全生命周期管理至关重要&#xff0c;主要原因如下&#xff1a; 确保软件质量&#xff1a; 全生命周期管理涵盖了从需求分析、设计、开发、测试、部署、运行维护到废弃的全过程&#xff0c;通过有效的管理可以确保每个阶段的质量控制&…

Java集合(一)Map(1)

Map HashMap和HashTable区别 线程是否安全&#xff1a;HashMap线程不安全&#xff0c;HashTable线程安全。因为HashTable内部的方法都经过了synchronized关键字修饰。 HashMap线程不安全例子&#xff1a;如果两个线程都要往HashMap中插入数据&#xff0c;但是发生哈希冲突&…