移动Web学习04-移动端订单结算页PC端个人中心页面

news2025/1/19 19:24:11

5、电商结算页面案例

image-20240405171930209

css

body{
  background-color: #F2F2F2;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.main{
  padding: 12px 11px 80px;
}

.pay{
  display: flex;
  height: 80px;
  background-color: #fff;
  bottom: 0;
  width: 100%;
  border-top: 1px solid #ededed;
  position: fixed;
  padding: 0 10px;
  /* 两边元素贴边 */
  justify-content: space-between;
  /* 沿侧轴居中对齐 */
  align-items: center;
}
.pay .pay-left{
  font-size: 12px;
  color: #1e1e1e;
}

.pay .pay-left span{
  color: #cf4444;
}

.pay .pay-left span i{
  font-size: 20px;
  font-style: normal;
  font-weight: 700px;
}
.pay .pay-right{
  width: 91px;
	height: 35px;
  text-align: center;
  line-height: 35px;
  color: #fff;
  background-image: linear-gradient(90deg, #6fc2aa 5%, #54b196 100%);
  border-radius: 3px;
}

.pay .pay-right a{
  width: 42px;
	height: 35px;
  font-size: 13px;
  color: #ffffff;
  line-height: 35px;
	font-family: MicrosoftYaHei;
  text-decoration: none;
  text-align: center;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 0px;
}

.pannel{
  background-color: #fff;
  border-radius: 5px;
  margin-bottom: 10px;
}
.user_msg{
  display: flex;
  padding: 15px 0 15px 11px;
  align-items: center;
}

.user_msg .location{
  width: 30px;
  height: 30px;
  background-image: linear-gradient(90deg, 
		#6fc2aa 5%, 
		#54b196 100%);
    color: #fff;
    text-align: center;
    line-height: 30px;
    margin-right: 15px;
    border-radius: 50%;
}
.user{
 flex: 1;
}
.user .top{
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.user .top h5 {
    width: 55px;
    font-size: 15px;
    font-weight: 400;
}
.user .top p {
  font-size: 13px;
  margin-left: 15px;
}

.user .bottom{
  margin-top: 5px;
  font-size: 12px;
}
.more{
  width: 44px;
  height: 44px;
  /* background-color: #2ad1ff; */
  text-align: center;
  line-height: 44px;
  color: #808080;
  /* border: 1px solid #3a9cff; */
}

.product{
  padding: 11px 0px 11px  11px;
  display: flex;
  align-items: center;
}
.pic{
  width: 85px;
  height: 85px;
  /* background-color: pink;  */
}
.txt{
  flex: 1;
  margin: 0px 12px;
}
.txt h5{
  font-size: 13px;
  color: #262626;
  font-weight: 400;
  /* 多行文本溢出 */
  display: -webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp: 2;
  overflow:hidden;
  text-overflow: ellipsis;
}
.count{
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 44px;
  background-color: skyblue;
}
.txt .goods_style{
  display: inline;
  font-size: 11px;
	height: 16px;
	letter-spacing: 0px;
	color: #888888;
  background-color: #f1f1f1;
  padding: 0px 4px;
  border-radius: 2px;
}

/* 我这里span写错了 */
.txt .goods_style span:first-child{
  margin-right: 10px;
}

.txt .goods_price{
  color: #999;
  font-size: 12px;
  margin-top: 3px;
}
.txt .goods_price i,
.txt .goods_price em{
  font-size: 10px;
}
.txt .goods_price i{
  color: #cf4444;
}
.txt .goods_price span{
  font-size: 16px;
  color: #cf4444;
  margin-right: 12px;
}

.other{
  padding: 11px;
}

.other ul li{
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    color: #262626;
    font-size: 13px;
}
.other ul li h5{
   font-weight: 400px;
}
/* 选中计数行 old */
.other ul li:nth-child(2n+1){
   justify-content: space-between;
}
/* 选中最后一行让下边距变为0  */
.other ul li:last-child{
  margin-bottom: 0;
}

.other ul li:nth-child(2) p{
  font-size: 12px;
  margin-left: 19px;
}

.other ul li i{
  color: #808080;
  font-size: 13px;
  margin-right: 2px; 
}


html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <title>填写订单</title>
    <!-- 引入初始化的css文件 -->
    <link rel="stylesheet" href="./css/base.css">
    <!-- 引入字体图标的css文件 -->
    <link rel="stylesheet" href="./lib/iconfont/iconfont.css">
    <!-- 引入自己的css文件 -->
    <link rel="stylesheet" href="./css/order.css">
</head>
<body>
    <!-- main 主体内容 start-->
    <div class="main">
        <!-- 用户信息 start -->
        <div class="pannel user_msg">
             <div class="location">
                <i class="iconfont icon-location"></i>
             </div>
             <div class="user">
                <div class="top">
                    <h5>林丽</h5>
                    <p>18500667882</p>
                </div>
                <div class="bottom">北京市  海淀区  中关村软件园   信息科技大厦1号
                    楼410#</div>
             </div>
             <div class="more">
                <i class="iconfont icon-more"></i>
             </div>
        </div>
        <!-- 用户信息 end -->

        <!-- 商品信息 start -->
        <div class="pannel product">
             <div class="pic">
                <a href=""><img src="./uploads/pic.png" alt=""></a>
             </div>
             <div class="txt">
                <h5>康尔贝 非接触式红外体温仪领券立减30元 婴儿级材质 测温测温测温测温测温</h5>
                <p class="goods_style">
                    <span class="firstSpan">粉色</span><span>红外体温计</span>
                </p>
                <p class="goods_price">
                    <i>¥</i><span>266</span> 
                    <em>¥</em><del>299</del>
                </p>
             </div>
             <div class="count">
                <i class="iconfont icon-x"></i><span>1</span>
            </div>
        </div>
        <!--  商品信息 end -->
  
        <!--  其他信息start -->
        <div class="pannel other">
            <ul>
                <li>
                    <h5>配送方式</h5>
                    <p>顺丰快递</p>
                </li>
                <li>
                    <h5>买家备注</h5>
                    <p>希望可以快点发货</p>
                </li>
                <li>
                    <h5>支付方式</h5>
                    <p>支付宝<i class="iconfont icon-more"></i></p>
                </li>
            </ul>
        </div>
        <!-- 其他信息end -->
        

        <!--  配送信息start -->
        <div class="pannel other">
            <ul>
                <li>
                    <h5>商品总价</h5>
                    <p>¥299.00</p>
                </li>
                <li>
                    <h5>运费</h5>
                    <p>¥0.00</p>
                </li>
                <li>
                    <h5>折扣</h5>
                    <p>-¥30.00</p>
                </li>
            </ul>
        </div>
        <!-- 其他信息end -->

        <!--  配送信息start -->
        <div class="pannel other">
            <ul>
                <li>
                    <h5>商品总价</h5>
                    <p>¥299.00</p>
                </li>
                <li>
                    <h5>运费</h5>
                    <p>¥0.00</p>
                </li>
                <li>
                    <h5>折扣</h5>
                    <p>-¥30.00</p>
                </li>
            </ul>
        </div>
        <!-- 其他信息end -->
    </div>
    <!-- main 主体内容 end-->



    <!-- pay底部支付 start -->
    <div class="pay">
        <div class="pay-left">
            合计:<span><i>266.00</i></span>
        </div>
        <div class="pay-right">
            <a href="#">去支付</a>
        </div>
    </div>
     <!--pay底部支付 end -->
</body>
</html>

6、PC端个人中心案例

image-20240405172136989

css代码

.xtx-boy {
    background-color: #f4f4f4;
    padding: 30px 0 85px;
}
.xtx-boy .container{
    display: flex;
    justify-content: space-between;
}
.xtx-boy .container .aside{
    width: 227px;
    height: 500px;
    background-color: palegreen;
    
}

.xtx-boy .container .main{
    width: 999px;
    /* 回头再删除 让里面的内容撑开就行 */
    /* height: 500px; */
   background-color: orange;
}

.main .overview{
    display: flex;
    background-color: #fff;
    padding: 20px 0px;
    height: 132px;
    margin-bottom: 18px;
}
/* 每个div占一份 */
.overview div{
    flex: 1;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
}
.overview div a{
    display: flex;
    height: 55px;
    /* 改变主轴方式 */
    flex-direction: column;
    align-items: center;
    /* 上下居中 */
    justify-content: space-between;
}
.overview div:first-child{
    border-right: 1px solid #f1f1f1;
}

/* .overview div img{ */
    /* width: 25px;
    height: 22px; */
    /* margin-bottom: 7px;
} */
.overview  span{
    color: #e05e30;
    font-size: 25px;
    height: 30px;
    display: block;
    line-height: 25px;
}
.pannel{
  background-color: #fff;
  padding: 28px 19px;
  margin-bottom: 20px; 
}
.paner-title{
    font-size: 16px;
    color: #333;
    /* background: pink; */
    height: 45px;
    display: flex;
    justify-content: space-between;
}
.paner-title h4{
    font-size: 22px;
    font-weight: 400;
}
.paner-title a{
    color: #999;
    font-family: simsum;
    margin-top: 5px;
    margin-right: 15px;
}

.content li{
  display: flex;
  border: 1px solid #ccc;
  height: 137px;
  margin-bottom: 20px;
  font-size: 14px;
}
.content li:last-child{
    margin-bottom: 0;
}
.content .goods{
    flex:1;
    display: flex;
    align-items: center;
}
.content .goods .pic{
   width: 107px;
   height: 107px;
   background-color: pink;
   margin: 0 5px 0 12px;
}
.content .goods .pic img{
    width: 107px;
    height: 107px;
}

.content .goods .txt h5{
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
    /* 溢出隐藏 */
    width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; 
}
.content .state{
    width: 200px;
    /* line-height: 135px; */
    text-align: center;
    padding-top: 50px; 
    color: #e05e30;
}

.content .state p:nth-child(2){
    color: #999;
}
.content .price{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* text-align: center;
    padding-top: 30px; */
    width: 200px;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
}
.content .price p:first-child{
    color: #9a2e1f;
}
.content .pay{
    width: 180px;
}
.content .pay{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 180px;
}
.content .pay p:nth-child(1){
    width: 100px;
    height: 30px;
    background-color:  #5eb69c;
    text-align: center;
    line-height: 30px;
    color: #fff;
    margin-bottom: 10px;
    border-radius: 2px;
}

html内容

<!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>用户中心页面-小兔鲜儿</title>
    <!-- 网站说明 -->
    <meta name="description" content="小兔鲜儿官网,致力于打造全球最大的食品、生鲜电商购物平台。">
    <!-- 关键字 -->
    <meta name="keywords" content="小兔鲜儿,食品,生鲜,服装,家电,电商,购物">
    <link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
    <!-- 引入初始化文件 css reset base.css -->
    <link rel="stylesheet" href="./css/base.css">
    <!-- 引入common.css  公共的头部和底部 -->
    <link rel="stylesheet" href="./css/common.css">
    <!--引入center.css  公共的头部和底部 -->
    <link rel="stylesheet" href="./css/cente2.css">

</head>

<body>
    <!-- 头部模块开始 -->
    <header>
        <!-- 快捷导航 -->
        <div class="xtx-shortcut">
            <div class="container">
                <ul>
                    <li><a href="#">请先登录</a></li>
                    <li class="sep">|</li>
                    <li><a href="#">免费注册</a></li>
                    <li class="sep">|</li>
                    <li><a href="#">我的订单</a></li>
                    <li class="sep">|</li>
                    <li><a href="#">会员中心</a></li>
                    <li class="sep">|</li>
                    <li><a href="#">帮助中心</a></li>
                    <li class="sep">|</li>
                    <li><a href="#">在线客服</a></li>
                    <li class="sep">|</li>
                    <li>
                        <a href="#">
                            <i></i>
                            手机版
                        </a>
                    </li>
                </ul>
            </div>
        </div>
        <!-- 导航栏 -->
        <div class="xtx-main-nav container">
            <!-- logo -->
            <div class="logo">
                <h1>
                    <a href="./index.html" title="小兔鲜儿">小兔鲜儿</a>
                </h1>
            </div>
            <!-- nav -->
            <nav class="nav">
                <ul>
                    <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>
                    <li><a href="#">居家</a></li>
                    <li><a href="#">洗护</a></li>
                    <li><a href="#">孕婴</a></li>
                    <li><a href="#">服装</a></li>
                </ul>
            </nav>
            <!-- search -->
            <div class="search">
                <input type="text" placeholder="搜一搜">
            </div>
            <!-- car -->
            <a href="#" class="car">
                <span>2</span>
            </a>
        </div>
    </header>
    <!-- 头部模块结束 -->

    <!-- 用户中心内容区域 start-->
    <div class="xtx-boy">
         <div class="container">
            <!-- 左侧内容 -->
            <div class="aside">123</div>
            <!-- 右侧内容 -->
            <div class="main">
                <!-- 右侧第一个盒子(会员中心,优惠卷) -->
                <div class="overview">
                      <div class="overview-left">
                        <a href="">
                            <img src="./images/vip.png" alt="" width="25" height="22">
                            <p>会员中心</p>
                        </a>
                        <a href="">
                            <img src="./images/safe.png" alt="" width="25" height="22">
                            <p>安全设置</p>
                        </a>
                        <a href="">
                            <img src="./images/address.png" alt=""  width="18" height="25">
                            <p>地址管理</p>
                        </a>
                      </div>
                      <div class="overview-right">
                        <a href="">
                            <span>6</span>
                            <p>优惠卷</p>
                        </a>
                        <a href="">
                           <span>70</span>
                           <p>礼品卡</p>
                        </a>
                        <a href="">
                            <span>120</span>
                            <p>积分</p></p></p>
                        </a>
                      </div>
                </div>
                <!-- 订单模块 start-->
                <div class="pannel order">
                    <!-- 我的订单头部 start -->
                   <div class="paner-title">
                        <h4>我的订单</h4>
                        <a href="#">查看全部 &gt;</a>
                   </div>
                   <!-- 我的订单头部 end -->

                   <!-- 我的订单内容 start-->
                   <div class="content">
                       <ul>
                          <li>
                            <div class="goods">
                                <div class="pic">
                                    <img src="./uploads/order_goods_1.jpg" alt="">
                                </div>
                                <div class="txt">
                                     <h5>拉夫劳伦T恤男正品圆领短袖</h5>
                                     <p>颜色: 白色 尺码: M 数量: 1</p>
                                </div>
                            </div>
                            <div class="state">
                                <p>代付款</p>
                                <p>查看物流</p>
                            </div>
                            <div class="price">
                                <p>¥99.00</p>
                                <p>(含运费:¥10.00)</p>
                                <p>在线支付</p>
                            </div>
                            <div class="pay"> 
                                <p>立即付款</p>
                                <p>查看详情</p>
                                <p>取消订单</p>
                            </div>
                          </li>
                          <li>
                            <div class="goods">
                                <div class="pic">
                                    <img src="./uploads/order_goods_1.jpg" alt="">
                                </div>
                                <div class="txt">
                                     <h5>拉夫劳伦T恤男正品圆领短袖</h5>
                                     <p>颜色: 白色 尺码: M 数量: 1</p>
                                </div>
                            </div>
                            <div class="state">
                                <p>代付款</p>
                                <p>查看物流</p>
                            </div>
                            <div class="price">
                                <p>¥99.00</p>
                                <p>(含运费:¥10.00)</p>
                                <p>在线支付</p>
                            </div>
                            <div class="pay"> 
                                <p>立即付款</p>
                                <p>查看详情</p>
                                <p>取消订单</p>
                            </div>
                          </li>
                          <li>
                            <div class="goods">
                                <div class="pic">
                                    <img src="./uploads/order_goods_1.jpg" alt="">
                                </div>
                                <div class="txt">
                                     <h5>拉夫劳伦T恤男正品圆领短袖</h5>
                                     <p>颜色: 白色 尺码: M 数量: 1</p>
                                </div>
                            </div>
                            <div class="state">
                                <p>代付款</p>
                                <p>查看物流</p>
                            </div>
                            <div class="price">
                                <p>¥99.00</p>
                                <p>(含运费:¥10.00)</p>
                                <p>在线支付</p>
                            </div>
                            <div class="pay"> 
                                <p>立即付款</p>
                                <p>查看详情</p>
                                <p>取消订单</p>
                            </div>
                          </li>
                          <li>
                            <div class="goods">
                                <div class="pic">
                                    <img src="./uploads/order_goods_1.jpg" alt="">
                                </div>
                                <div class="txt">
                                     <h5>拉夫劳伦T恤男正品圆领短袖</h5>
                                     <p>颜色: 白色 尺码: M 数量: 1</p>
                                </div>
                            </div>
                            <div class="state">
                                <p>代付款</p>
                                <p>查看物流</p>
                            </div>
                            <div class="price">
                                <p>¥99.00</p>
                                <p>(含运费:¥10.00)</p>
                                <p>在线支付</p>
                            </div>
                            <div class="pay"> 
                                <p>立即付款</p>
                                <p>查看详情</p>
                                <p>取消订单</p>
                            </div>
                          </li>
                       </ul>
                   </div>
                   <!-- 我的订单内容 end -->
                </div>
                <!-- 订单模块 end-->
            </div>
         </div>
    </div>
    <!-- 用户中心内容区域  end-->

    <!-- 底部开始 -->
    <footer>
        <!-- 上盒子 -->
        <div class="footer-t">
            <div class="container">
                <dl class="customer">
                    <dt>客户服务</dt>
                    <dd class="zaixian">
                        <a href="#">
                            <p>在线客服</p>
                        </a>
                    </dd>
                    <dd class="wenti">
                        <a href="#">
                            <p>问题反馈</p>
                        </a>
                    </dd>
                </dl>
                <dl class="us">
                    <dt>关注我们</dt>
                    <dd class="gongzhonghao">
                        <a href="#">
                            <p>公众号</p>
                        </a>
                    </dd>
                    <dd class="weibo">
                        <a href="#">
                            <p>微博</p>
                        </a>
                    </dd>
                </dl>
                <!-- 下载模块 -->
                <dl class="download">
                    <dt>下载APP</dt>
                    <dd class="qrcode">
                        <img src="./uploads/qrcode.png" alt="">
                    </dd>
                    <dd class="down">
                        <p>扫描二维码</p>
                        <p>立马下载APP</p>
                        <a href="#">下载页面</a>
                    </dd>
                </dl>
                <!-- 热线模块 -->
                <dl class="hotline">
                    <dt>服务热线</dt>
                    <dd>
                        <p>400-0000-000</p>
                        <p>周一至周日 8:00-18:00</p>
                    </dd>
                </dl>
            </div>
        </div>
        <!-- 下盒子 -->
        <div class="footer-b">
            <!-- 服务模块 -->
            <div class="xtx-service">
                <a href="#">价格亲民</a>
                <a href="#">物流快捷</a>
                <a href="#">品质新鲜</a>
            </div>
            <!-- 版权模块 -->
            <div class="xtx-copyright">
                <p>
                    <a href="#">关于我们</a> |
                    <a href="#">帮助中心</a> |
                    <a href="#">售后服务</a> |
                    <a href="#">配送与验收</a> |
                    <a href="#">商务合作</a> |
                    <a href="#">搜索推荐</a> |
                    <a href="#">友情链接</a>
                </p>
                <p>CopyRight @ 小兔鲜儿</p>
            </div>
        </div>
    </footer>
    <!-- 底部结束 -->
</body>

</html>

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

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

相关文章

腾讯云轻量应用服务器是什么?和普通云服务器有区别吗?

腾讯云轻量应用服务器是什么&#xff1f;轻量应用服务器是开箱即用、面向轻量应用场景的云服务器产品&#xff0c;与之对应的是云服务器CVM&#xff0c;CVM是专业级的云服务器&#xff0c;中小企业、个人开发者可以使用轻量应用服务器在云端构建网站、Web应用、小程序/小游戏、…

计算机网络-TCP重传、滑动窗口、流量控制、拥塞控制

重传机制 超时重传&#xff1a;超时重传时间&#xff08;RTO&#xff09;设定为略大于RTT&#xff08;动态&#xff09;。触发场景包括自己发送的数据包丢失和别人给自己的回应数据包丢失。启动重传机制后如果还没有收到数据包&#xff0c;则RTO设置为上次的两倍&#xff0c;直…

基于顺序表实现通讯管理系统!(有完整源码!)

​​​​​​​ 个人主页&#xff1a;秋风起&#xff0c;再归来~ 文章专栏&#xff1a;C语言实战项目 个人格言&#xff1a;悟已往之不谏&#xff0c;知来者犹可追 克心守己&#xff0c;律己则安&#xff01;​​​​​​​ 目录 1、实现思路 ​…

从B2B转向B2B2C模式:工业品牌史丹利百得的转型历程

图片来源&#xff1a;Twitter 在当今数据驱动的营销环境中&#xff0c;企业努力更好了解客户&#xff0c;并在整个客户旅程中提供个性化体验。史丹利百得&#xff08;Stanley Black & Decker&#xff09;是一家领先的工具和工业设备供应商&#xff0c;近年来开始重大转型。…

Oracle的物理结构解析

这些图是我自己画的&#xff0c;我也会在我的公众号【会用数据库】解析。理解起来非常简单&#xff0c;而且非常好记。不用死记硬背&#xff0c;有兴趣可以来公众号看呀。

深度学习【向量化(array)】

为什么要向量化 在深度学习安全领域、深度学习练习中&#xff0c;你经常发现在训练大量数据时&#xff0c;深度学习算法表现才更加优越&#xff0c;所以你的代码运行的非常快至关重要&#xff0c;否则&#xff0c;你将要等待非常长的时间去得到结果。所以在深度学习领域向量化…

Apache Pulsar源码解析之Lookup机制

引言 在学习Pulsar一段时间后&#xff0c;相信大家也或多或少听说Lookup这个词&#xff0c;今天就一起来深入剖析下Pulsar是怎么设计的它吧 Lookup是什么 在客户端跟服务端建立TCP连接前有些信息需要提前获取&#xff0c;这个获取方式就是Lookup机制。所获取的信息有以下几种…

机器学习实战18-机器学习中XGBClassifier分类器模型的应用实战,以及XGBClassifier分类器的调优策略

大家好&#xff0c;我是微学AI&#xff0c;今天给大家介绍一下机器学习实战18-机器学习中XGBClassifier分类器模型的应用实战&#xff0c;以及XGBClassifier分类器的调优策略。XGBClassifier是基于eXtreme Gradient Boosting (XGBoost)算法的分类器模型&#xff0c;在机器学习领…

成为图像SoC大牛有多难?

IPC&#xff08;Internet Protocol Camera&#xff0c;即网络摄像机&#xff09;芯片架构师需要具备一系列跨学科的知识和技能。IPC芯片架构师的工作涉及到先进工艺、低功耗、SoC架构、处理器架构、图像处理、视频压缩、网络通信以及嵌入式系统设计等多个领域。以下是一些关键的…

Ubuntu22.04中基于Qt开发Android App

文章目录 前言在Ubuntu22.04中配置开发环境案例测试参考 前言 使用Qt开发手机应用程序是一种高效且灵活的选择。Qt作为一个跨平台的开发框架&#xff0c;为开发者提供了统一的开发体验和丰富的功能库。首先&#xff0c;Qt的跨平台性让开发者可以使用相同的代码库在不同的操作系…

收藏|深入浅出分析光刻机

光刻技术是指在光照作用下&#xff0c;借助光致抗蚀剂&#xff08;又名光刻胶&#xff09;将掩膜版上的图形转移到基片上的技术。 光刻机是半导体生产制造的主要生产设备之一&#xff0c;也是决定整个半导体生产工艺水平高低的核心技术机台。半导体技术发展都是以光刻机的光刻线…

【测试开发学习历程】python流程控制

前言&#xff1a;写到这里也许自己真的有些疲惫了&#xff0c;但是人生不就是像西西弗斯推石上山一样的枯燥乏味吗&#xff1f; 在python当中的流程控制主要包含以下两部分的内容&#xff1a; 条件判断 循环 1 条件判断 条件判断用if语句实现&#xff0c;if语句的几种格式…

微软detours代码借鉴点备注

comeasy 借鉴点1 Loadlibray的时间选择 注入库wrotei.dll&#xff0c;为了获取istream的接口&#xff0c;需要loadlibrary&#xff0c;但是在dllmain中是不建议这样做的。因此&#xff0c;动态库在dllmain的时候直接挂载了comeasy.exe的入口 //获取入口 TrueEntryPoint (i…

太阳能光伏储能系统:全周期一站式解决方案

随着全球能源结构的不断变革&#xff0c;清洁能源的重要性日益凸显。太阳能光伏储能系统作为一种高效、环保的能源解决方案&#xff0c;正逐渐成为推动能源转型的关键力量。本文将详细介绍太阳能光伏储能系统的全周期一站式解决方案&#xff0c;以期为读者提供全面、深入的了解…

动态多目标优化:动态约束多目标优化测试集DCP1-DCP9的TruePF(提供MATLAB代码)

一、进化动态约束多目标优化测试集DCP1-DCP9 参考文献&#xff1a; [1]G. Chen, Y. Guo, Y. Wang, J. Liang, D. Gong and S. Yang, “Evolutionary Dynamic Constrained Multiobjective Optimization: Test Suite and Algorithm,” in IEEE Transactions on Evolutionary Com…

聚能共创下一代智能终端操作系统 软通动力荣膺“OpenHarmony优秀贡献单位”

近日&#xff0c;由开放原子开源基金会指导&#xff0c;以“开源共享未来”为主题的OpenHarmony社区年会在北京成功举办。本次活动汇集OpenHarmony项目群共建单位及生态伙伴等多方力量&#xff0c;旨在对2023年度OpenHarmony年度开源事业全面总结的同时&#xff0c;吸引更多伙伴…

VSCode如何调试C#代码?

1、启动VSCode&#xff1b; 一、创建项目 1、创建一个文件夹(workspace)&#xff1a; 2、进入这个文件夹 cd tt1 3、创建解决方案 dotnet new sln -o MyApp 4、进入解决方案 cd .\MyApp\ 5、创建项目&#xff08;在此假定为一个命令行的项目&#xff09; dotnet new …

PCIe 7.0|不要太卷,劝你先躺平

PCIe 6.0都已经发布了2-3年了&#xff0c;目前业内生态还没完全建立。甚至很多人都还没用上PCIe 5.0呢&#xff01; 近日&#xff0c;PCIe 7.0 ver0.5版本已经开放&#xff0c;同时宣布马不停蹄准备在2025年完成正式SPEC规范发布。 回顾PCIe 7.0变更&#xff0c;PCI-SIG在2022年…

力扣1448---统计二叉树中好节点的数量(Java、DFS、中等题)

题目描述&#xff1a; 给你一棵根为 root 的二叉树&#xff0c;请你返回二叉树中好节点的数目。 「好节点」X 定义为&#xff1a;从根到该节点 X 所经过的节点中&#xff0c;没有任何节点的值大于 X 的值。 示例 1&#xff1a; 输入&#xff1a;root [3,1,4,3,null,1,5] 输出…

SSM项目实战——哈哈音乐(四)前台模块开发

1、项目准备 ①导入依赖和前端资源 <project xmlns"http://maven.apache.org/POM/4.0.0" xmlns:xsi"http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.x…