i云笔记内涵资源: 编程思路笔记,源码分享,思路解答分享,封装函数分享,演示Demo等内容。 上传笔记可长期保存,笔记内容可进行加粗,居中,标记等功能,笔记可 置顶 不同的等级,将重要的笔记内容放前面。笔记内容可进行 加密 ,加密后不展示在首页,内容只能被自己查看! 有问题可联系QQ3399769530 或微信cm1598421 添加时备注来意 网站已运行 {DAY_COUNT} 天 已有笔记 {CONTENT_COUNT} 篇
进制转换器 http://notei.cn/tool/tool_hex.html MD5加密工具 http://notei.cn/tool/tool_md5.html Base64加解密 http://notei.cn/tool/tool_base64.html Aes加解密工具 http://notei.cn/tool/tool_Aes.html 前端学习软件 http://h5.notei.cn
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Custom Font Example</title> <style> /* 使用@font-face规则定义字体 */ @font-face { font-family: 'AkalTun'; /* 定义一个字体名 */ src: url('https://akaltun.cn/1/akaltun.ttf') format('truetype'); /* 指定字体文件和格式 */ } /* 应用自定义字体到body,也可以应用到其他元素 */ body { font-family: 'AkalTun', sans-serif; /* 将字体应用到body,如果字体加载失败则回退到sans-serif */ } </style> </head> <body> <div id="container"> <h1>欢迎来到我的网站ئۇيغۇرچە</h1> <p>这里是使用自定义字体的文本。</p> <!-- 其他内容 --> </div> </body> </html>
Mysql外链约束规则
java的mvc三层架构分别是: View(界面层),Service(业务逻辑层),DAO(数据访问层) V:View 网页视图,为用户提供能够看到并且使用的界面,与用户直接进行交互。 M:Model,业务模型,处理业务 C:Controller,控制器,处理请求,调用模型和视图 dao层负责对数据进行直接操控,最底层 service层负责对传递过来的参数验证,以及其他逻辑验证操作。验证完毕访问dao层进行数据操控 servlet层负责接收参数,然后调用service层进行处理 三个层分工合作,有利于后期的功能维护,那层出了问题就去处理哪层
<!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>Document</title> <style> * { padding: 0; margin: 0; } li { list-style-type: none; } a { text-decoration: none; } .nav-box { width: 980px; height: 90px; margin: 20px auto; display: flex; align-items: center; } .right { flex: 1; margin-left: 20px; } .right-top-tag li { display: inline-block; font-size: 12px; border-radius: 3px 3px 0 0; overflow: hidden; } .right-top-tag li a { color: #666; padding: 5px 15px; display: inline-block; } .right-search { margin-top: -4px; display: flex; } .right-search input { border: 3px solid #F37B03; width: 100%; height: 27px; background: url("./images/tb/search.jpg") no-repeat 10px; flex: 1; outline: none; padding-left: 30px; color: #666; } .right-search .button { flex-shrink: 1; width: 133px; height: 33px; background: url("images/tb/button.jpg") no-repeat; border: none; } .right-search .tip { height: 33px; } .right-search .tip p { line-height: 16px; font-size: 12px; margin-left: 10px; color: #666; } .right-title-nav ul li { display: inline-block; margin-top: 6px; } .right-title-nav ul li a { color: #555; font-size: 12px; margin-right: 12px; } </style> </head> <body> <div class="nav-box"> <div class="left"> <img src="./images/tb/logo.jpg" alt=""> </div> <div class="right"> <div class="right-top-tag"> <ul> <li style="background-color: #F37B03;"><a style="color: #fff;" href="#"> 宝贝 </a></li> <li><a href="#"> 天猫<span style="color: #f79a3d;">(淘宝商城)</span> </a></li> <li><a href="#"> 店铺 </a></li> </ul> </div> <div class="right-search"> <input type="text"> <button class="button"></button> <div class="tip"> <p>高级搜索</p> <p>使用帮助</p> </div> </div> <div class="right-title-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> </ul> </div> </div> </div> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>Document</title> <style> * { padding: 0; margin: 0; } div { box-sizing: border-box; color: #DE8786; } .mainbox { width: 980px; margin: 0 auto; } .nav { background-color: #FE9AB5; } .nav .item { display: inline-block; line-height: 46px; padding: 0 30px; color: #fff; } .banner { text-align: center; } .frombox { background: url("./images/content_bg.jpg"); padding: 0 180px; } .step { padding: 10px 0; } .step .tip { font-size: 20px; line-height: 42px; float: left; } .userinfo .title { border-bottom: 1px solid #FE9AB5; line-height: 42px; margin-bottom: 10px; } input { border: 1px solid #FE9AB5; } .tableinput { padding: 5px 30px; } .tableinput tr { margin: 10px 0; } .tableinput .info { width: 220px; height: 22px; } .tableinput tr .titles { text-align: right; } .tableinput select { width: 168px; border-color: #FE9AB5; color: #FE9AB5; } </style> </head> <body> <div class="content"> <div class="logo mainbox"> <img src="./images/logo.jpg" alt=""> </div> <div class="nav"> <ul class="mainbox"> <li class="item">首页</li> <li class="item">会员</li> <li class="item">活动</li> <li class="item">直播</li> <li class="item">视频</li> <li class="item" style="background-color: #FE9AB5;">注册</li> </ul> </div> <div class="banner"> <img src="./images/banner.jpg" alt=""> </div> <div class="frombox mainbox"> <div class="step"> <span class="tip">注册步骤:</span> <img src="./images/step.jpg" alt=""> </div> <div class="userinfo"> <p class="title">您的账号信息:</p> <table class="tableinput"> <tr> <td class="titles">注册方式:</td> <td><input type="radio"> E-main注册 <input type="radio"> 手机号码注册</td> </tr> <tr> <td>注册邮箱:</td> <td><input class="info" type="email"></td> </tr> <tr> <td class="titles">注册手机:</td> <td><input class="info" type="email"></td> </tr> <tr> <td class="titles">登录密码:</td> <td><input class="info" type="email"></td> </tr> <tr> <td class="titles">昵称:</td> <td><input class="info" type="email"></td> </tr> </table> </div> <div class="userinfo"> <p class="title">您的个人信息:</p> <table class="tableinput"> <tr> <td class="titles">性别:</td> <td><input type="radio"> 男 <input type="radio"> 女</td> </tr> <tr> <td class="titles">学历:</td> <td><select> <option value="初中">初中</option> <option value="高中">高中</option> <option value="大专">大专</option> <option value="本科">本科</option> </select></td> </tr> <tr> <td class="titles">所在城市:</td> <td><select> <option value="北京">北京</option> <option value="江西">江西</option> <option value="四川">四川</option> </select></td> </tr> </table> </div> </div> </div> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>Document</title> <style> body { background-color: #EBEBEB; } .content { background: url("images/form_bg.jpg"); width: 1430px; height: 717px; margin: 0 auto; position: relative; } .frombox { width: 700px; height: 540px; position: absolute; top: 160px; left: 700px; } .title { text-align: center; font-size: 24px; } .line { padding: 7px 0; font-size: 15px; } .line input { height: 26px; width: 220px; } .line .tip { text-align: right; display: inline-block; width: 90px; } .line.color input { width: 120px; } .line.btn input { background-color: #93B518; color: #fff; width: 120px; height: 36px; border: 0; margin: 15px 28px; } </style> </head> <body> <div class="content"> <div class="frombox"> <h1 class="title">传智学员信息登记表</h1> <form action="" method="GET"> <div class="line"> <label class="tip">用户登录名:</label> <input type="text" name="username" value="mymail@163.com" readonly="readonly" disabled="disabled"> <label>(不能修改,只能查看)</label> </div> <div class="line"> <label class="tip">真实姓名:</label> <input type="text" name="name" placeholder="例如:王鹏" required pattern="^[\u4e00-\u9fa5]+$"> <label>(必须填写,只能输入汉字)</label> </div> <div class="line"> <label class="tip">真实年龄:</label> <input type="number" name="age" min="0" max="100" value="24" required placeholder="16-100"> <label>(必须填写)</label> </div> <div class="line"> <label class="tip">出生日期:</label> <input type="date" name="date" required> <label>(必须填写)</label> </div> <div class="line"> <label class="tip">电子邮箱:</label> <input type="email" name="email" placeholder="123456@qq.com" required> <label>(必须填写)</label> </div> <div class="line"> <label class="tip">身份证号:</label> <input type="text" name="idcard" required pattern="^[0-9]{17}[0-9Xx]$"> <label>(必须填写,能够以数字,字母x结尾的短身份证号)</label> </div> <div class="line"> <label class="tip">手机号码:</label> <input type="tel" name="tel" required> <label>(必须填写)</label> </div> <div class="line"> <label class="tip">个人主页:</label> <input type="url" name="myurl" placeholder="http://bk.notei.cn"> <label>(请选择网址)</label> </div> <div class="line color"> <label class="tip">幸运颜色:</label> <input type="color" name="luckcolor" value="#E2D546"> <label>(请选择你喜欢的颜色)</label> </div> <div class="line btn"> <input type="submit" value="提交"> <input type="reset" value="重置"> </div> </form> </div> </div> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>Document</title> <style> * { margin: 0; padding: 0; } div { box-sizing: border-box; } body { background-color: #FFF9ED; } a { text-decoration: none; color: #333; } li { list-style-type: none; } .content { display: flex; flex-direction: column; justify-content: center; align-items: center; } .container { width: 980px; margin: 0 auto; height: 100px; } .nav { background: url("images/head_bg.jpg") repeat-x; height: 128px; width: 100%; } .nav li { float: left; } .nav .item a { display: inline-block; width: 120px; height: 128px; line-height: 64px; text-align: center; color: #fff; margin: 0 5px; font-size: 17px; } .nav .item a:hover { background: url("images/xuanfu.png") no-repeat; } .banner img { width: 100%; } .borbox { background-color: #EC6E47; padding: 10px 30px; height: auto; } .borbox ul { width: 100%; display: flex; padding: 10px; background-color: #fff; } .borbox ul li { flex: 1 0 0; height: 100%; margin: 0 3px; } .borbox ul li .flexbox { display: flex; } .borbox ul li div { background-color: #242424; color: #fff; } .borbox ul li .top { margin-bottom: 8px; } .borbox ul li .name { text-align: center; flex: 1 0 0; } .borbox ul .left .top .name { line-height: 169px; } .borbox ul .left .bottom .name { line-height: 137px; } .borbox ul .center .top { height: 117px; line-height: 117px; } .borbox ul .center .bottom { height: 189px; line-height: 189px; } .borbox ul .right .top { height: 313px; line-height: 313px; } .morebox { margin-top: 50px; text-align: left; height: auto; } .morebox>.title { display: inline-block; background-color: #EC6E47; color: #fff; padding: 10px 20px; font-size: 16px; font-weight: normal; } .morebox .list { display: flex; gap: 8px; background-color: #fff; padding: 10px; border: 1px solid #ccc; } .morebox .list li { flex: 1 0 0; border: 1px solid #ccc; padding-bottom: 15px; } .morebox .list li img { width: 100%; border-bottom: 1px solid #ccc; } .morebox .list li .title { text-align: center; width: 100%; color: #666; padding: 10px 0; font-size: 18px; } .morebox .list li .buybox { width: 80%; margin: 0 auto; background: url("./images/gouwu.jpg") no-repeat; background-color: #EC6E47; color: #fff; padding-left: 56px; height: 36px; line-height: 36px; } .footer { background-color: #111; width: 100%; color: #fff; padding: 50px 0; text-align: center; font-size: 14px; line-height: 29px; } </style> </head> <body> <div class="content"> <div class="nav"> <ul class="container"> <li><img src="./images/logo.png" alt="logo"></li> <li class="item"><a href="#">穿搭速递</a></li> <li class="item"><a href="#">时尚大片</a></li> <li class="item"><a href="#">星着装</a></li> <li class="item"><a href="#">时尚园</a></li> <li class="item"><a href="#">时尚专栏</a></li> <li class="item"><a href="#">会员/登录</a></li> </ul> </div> <div class="banner"> <img src="./images/banner.jpg" alt=""> </div> <div class="borbox container"> <ul> <li class="left"> <div class="top flexbox"> <img src="./images/pic01.jpg" alt=""> <p class="name">明星时尚</p> </div> <div class="bottom flexbox"> <img src="./images/pic02.jpg" alt=""> <p class="name">明星时尚</p> </div> </li> <li class="center"> <div class="top flexbox"> <img src="./images/pic03.jpg" alt=""> <p class="name">明星时尚</p> </div> <div class="bottom flexbox"> <img src="./images/pic04.jpg" alt=""> <p class="name">明星时尚</p> </div> </li> <li class="right"> <div class="top flexbox"> <img src="./images/pic05.jpg" alt=""> <p class="name">明星时尚</p> </div> </li> </ul> </div> <div class="morebox container"> <h2 class="title">潮流前沿/Tadil current</h2> <ul class="list"> <li> <img src="./images/match01.jpg" alt=""> <p class="title">潮流饰品</p> <div class="buybox"> 快速购买通道 </div> </li> <li> <img src="./images/match02.jpg" alt=""> <p class="title">潮流饰品</p> <div class="buybox"> 快速购买通道 </div> </li> <li> <img src="./images/match03.jpg" alt=""> <p class="title">潮流饰品</p> <div class="buybox"> 快速购买通道 </div> </li> <li> <img src="./images/match04.jpg" alt=""> <p class="title">潮流饰品</p> <div class="buybox"> 快速购买通道 </div> </li> </ul> </div> <div class="footer"> <p> All right reseved©2006-2016 CHAOUUFUSHI.com, All right reseved</p> <p>2021-2018, 版权所有 潮流服饰 85CP备案13385453</p> </div> </div> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style type="text/css"> * { padding: 0; margin: 0; } li { list-style: none; } div { box-sizing: border-box; } .min-content { width: 980px; margin: 0 auto; } .content { width: 1280px; margin: 0 auto; } .header { height: 120px; line-height: 120px; background: #fff; } .header .logo { float: left; height: 80px; margin-top: 20px; } .header .goto { float: right; color: #666; } .header .goto a { color: #666; text-decoration: none; } .navbox { height: 60px; background: #404042; line-height: 60px; color: #fff; font-size: 18px; } .navbox ul li { padding: 0 42px; float: left; } .navbox ul li:hover { background-color: #DA5454; } .banner img { width: 100%; } .function ul { display: flex; } .function ul li { padding: 34px 0; flex: 1 0 0; border: 1px solid #ddd; border-top: 0; border-spacing: 0; } .function .item img { height: 50px; margin: 0 15px 0 28px; float: left; } .function .item .info .title { font-size: 17px; } .function .item .info .subtitle { font-size: 14px; color: #666; } .demobox,.newsbox { margin-top: 10px; } .demobox ul .item { float: left; margin: 3px 8px; } .demobox .title,.newsbox .title { line-height: 56px; border-bottom: 1px solid #ddd; margin-bottom: 10px; color: #222; font-size: 18px; } .newsbox .itemtitle { font-size: 15px; color: #444; } .newsbox>ul { display: flex; gap: 15px; } .newsbox>ul .listbox { flex: 1 0 0; border: 1px solid #ddd; padding: 25px 20px; } .newsbox>ul .listbox .itemtitle { margin-bottom: 5px; } .newsbox>ul .listbox ul .item { border-bottom: 1px solid #ddd; padding: 20px 0; } .newsbox>ul .listbox ul .item img { float: left; margin-right: 15px; } .newsbox>ul .listbox ul .item .infotitle { font-size: 16px; color: #222; } .newsbox>ul .listbox ul .item .subtitle { font-size: 13px; color: #aaa; } .footer { padding: 46px; margin-top: 20px; background-color: #111; text-align: center; color: #fff; line-height: 36px; font-size: 15px; } </style> </head> <body> <div class="content"> <div class="min-content"> <div class="header"> <img class="logo" src="./images/logo.png" alt="logo"> <div class="goto"> <a href="#">登录</a> | <a href="#">注册</a> </div> </div> </div> <div class="navbox"> <div class="min-content"> <ul> <li class="item">首页</li> <li class="item">设计案例</li> <li class="item">装修图库</li> <li class="item">有问必答</li> <li class="item">逛商品</li> </ul> </div> </div> <div class="banner"> <img src="./images/banner.jpg" alt="banner"> </div> <div class="function min-content"> <ul> <li class="item"> <img src="./images/pic01.jpg" alt=""> <div class="info"> <p class="title">浏览真实设计案例</p> <p class="subtitle">设计师原创作品</p> </div> </li> <li class="item"> <img src="./images/pic02.jpg" alt=""> <div class="info"> <p class="title">浏览真实设计案例</p> <p class="subtitle">设计师原创作品</p> </div> </li> <li class="item"> <img src="./images/pic03.jpg" alt=""> <div class="info"> <p class="title">浏览真实设计案例</p> <p class="subtitle">设计师原创作品</p> </div> </li> <li class="item"> <img src="./images/pic04.jpg" alt=""> <div class="info"> <p class="title">浏览真实设计案例</p> <p class="subtitle">设计师原创作品</p> </div> </li> </ul> </div> <div class="demobox min-content"> <h4 class="title">设计案例</h4> <ul> <li class="item"> <img src="./images/pic05.jpg" alt=""> </li> <li class="item"> <img src="./images/pic06.jpg" alt=""> </li> <li class="item"> <img src="./images/pic07.jpg" alt=""> </li> <li class="item"> <img src="./images/pic08.jpg" alt=""> </li> <li class="item"> <img src="./images/pic09.jpg" alt=""> </li> <li class="item"> <img src="./images/pic10.jpg" alt=""> </li> </ul> </div> <div class="newsbox min-content"> <h4 class="title">最新动态</h4> <ul> <li class="listbox"> <h3 class="itemtitle">有问必答</h3> <ul class=""> <li class="item"> <img src="./images/pic01.png" alt=""> <div class="info"> <p class="infotitle">家具用品哪个品牌好</p> <p class="subtitle">回答:谢美家居用品很多错...</p> </div> </li> <li class="item"> <img src="./images/pic02.png" alt=""> <div class="info"> <p class="infotitle">家具用品哪个品牌好</p> <p class="subtitle">回答:谢美家居用品很多错...</p> </div> </li> <li class="item"> <img src="./images/pic03.png" alt=""> <div class="info"> <p class="infotitle">家具用品哪个品牌好</p> <p class="subtitle">回答:谢美家居用品很多错...</p> </div> </li> </ul> </li> <li class="listbox"> <h3 class="itemtitle">发布需求</h3> <ul class=""> <li class="item"> <img src="./images/pic04.png" alt=""> <div class="info"> <p class="infotitle">家具用品哪个品牌好</p> <p class="subtitle">回答:谢美家居用品很多错...</p> </div> </li> <li class="item"> <img src="./images/pic05.png" alt=""> <div class="info"> <p class="infotitle">家具用品哪个品牌好</p> <p class="subtitle">回答:谢美家居用品很多错...</p> </div> </li> <li class="item"> <img src="./images/pic06.png" alt=""> <div class="info"> <p class="infotitle">家具用品哪个品牌好</p> <p class="subtitle">回答:谢美家居用品很多错...</p> </div> </li> </ul> </li> <li class="listbox"> <h3 class="itemtitle">预约设计师</h3> <ul class=""> <li class="item"> <img src="./images/pic06.png" alt=""> <div class="info"> <p class="infotitle">家具用品哪个品牌好</p> <p class="subtitle">回答:谢美家居用品很多错...</p> </div> </li> <li class="item"> <img src="./images/pic07.png" alt=""> <div class="info"> <p class="infotitle">厨房在哪个方位风水好</p> <p class="subtitle">回答:看风水要结合...</p> </div> </li> <li class="item"> <img src="./images/pic08.png" alt=""> <div class="info"> <p class="infotitle">卧室多大比较合适</p> <p class="subtitle">回答:一般卧室的大小...</p> </div> </li> </ul> </li> </ul> </div> </div> <div class="footer"> <p>关于我们 | 联系我们 | 意见建议 | 帮助中心 | 使用条款</p> <p>免责声明:本网站部分内容由用户自行上传,如权利人发现存在误传其作品情形,请及时与本站联系。</p> </div> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document1</title> <style> * { padding: 0; margin: 0; } li { list-style: none; } a { color: #666; text-decoration: none; } .content { width: 1280px; margin: 0 auto; } .nav { height: 600px; background: url("images/bg.png") center; background-size: cover; } .navlist { padding: 30px 60px; box-sizing: border-box; text-align: center; } .navlist ul li { float: left; line-height: 60px; padding: 0 50px; font-size: 16px; } .seach { position: relative; width: 128px; height: 36px; margin-top: 12px; } .seach img { height: 16px; position: absolute; top: calc(50% - 8px); left: 10px; z-index: 10; } .seach .input { position: absolute; top: 0; left: 0; height: 100%; width: 100%; border: none; border-radius: 18px; font-size: 12px; padding-left: 32px; box-sizing: border-box; outline: none; color: #666 } .hot { text-align: center; margin-top: 20px; } .hotlist { margin-top: 20px; text-align: left; padding: 0 60px; box-sizing: border-box; } .hotlist .item .img img { width: 100%; } .hotlist .item .title { padding: 10px; box-sizing: border-box; font-weight: bold; font-size: 18px; color: #333; border-bottom: 1px solid #ddd; } .hotlist .item .info { padding: 10px; padding-bottom: 30px; color: #bbb; box-sizing: border-box; } .hotlist { display: flex; gap: 80px; } .bottomimage img { width: 100%; } .life { background-color: #E1EBF2; margin-top: 50px; text-align: center; padding: 30px 0; } .life ul { text-align: center; } .life ul li { display: inline-block; margin: 20px 20px; } .footer { height: 80px; background: url("images/footer_bg.jpg"); color: #fff; text-align: center; line-height: 80px; margin-top: 50px; } </style> </head> <body> <div class="content"> <div class="nav"> <div class="navlist"> <ul> <li> <img class="logo" src="./images/logo.png" alt=""> </li> <li><a href="#">网站首页</a></li> <li><a href="#">床和床垫</a></li> <li><a href="#">卧室纺织品</a></li> <li><a href="#">灯具照明</a></li> <li class="seach"> <img src="./images/f.png" alt=""> <input class="input" type="text" placeholder="输入商品名称"> <li> </ul> </div> </div> <div class="hot"> <img src="./images/dongtai.jpg" alt=""> <ul class="hotlist"> <li class="item"> <dt class="box"> <dd class="img"> <img src="./images/news1.jpg" alt=""> </dd> <dd class="title">BEST贝达</dd> <dd class="info">将杂乱无章的物品收纳到视线之外,在我怕门后要展示台的心爱之物!</dd> <dd class="bottomimage"><img src="./images/yinying.jpg" alt=""></dd> </dt> </li> <li class="item"> <dt class="box"> <dd class="img"> <img src="./images/news2.jpg" alt=""> </dd> <dd class="title">BEST贝达</dd> <dd class="info">将杂乱无章的物品收纳到视线之外,在我怕门后要展示台的心爱之物!</dd> <dd class="bottomimage"><img src="./images/yinying.jpg" alt=""></dd> </dt> </li> <li class="item"> <dt class="box"> <dd class="img"> <img src="./images/news3.jpg" alt=""> </dd> <dd class="title">BEST贝达</dd> <dd class="info">将杂乱无章的物品收纳到视线之外,在我怕门后要展示台的心爱之物!</dd> <dd class="bottomimage"><img src="./images/yinying.jpg" alt=""></dd> </dt> </li> </ul> </div> <div class="life"> <img src="./images/shenghuo.png" alt=""> <ul> <li><img src="./images/img1.jpg" alt=""></li> <li><img src="./images/img2.jpg" alt=""></li> <li><img src="./images/img3.jpg" alt=""></li> </ul> </div> </div> <div class="footer"> 爱家居版权所有2016-2026京ICP备222222222号 京公网安备2222222222222 </div> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document2</title> <style> * { margin: 0; padding: 0; } li { list-style: none; } .main { width: 980px; margin: 0 auto; } .top { background: url("images/logo.jpg") no-repeat; background-position: 50px; height: 56px; line-height: 56px; margin-top: 10px; } .top .user { float: right; margin-right: 50px; } .top .user a { color: #FF9C00; text-decoration: none; } .nav { background-color: #FF9C00; height: 46px; margin-top: 10px; text-align: center; line-height: 46px; font-size: 16px; } .navlist li { display: inline-block; height: 100%; } .navlist li a { height: 100%; padding: 0 25px; color: #B55F23; text-decoration: none; display: inline-block; } .navlist li a:hover { background-color: #fca76a; } .banner { height: 432px; background: url("./images/banner.jpg") no-repeat center; background-size: cover; } .infobox { height: 160px; background-color: #E7BF80; } .infobox ul { text-align: center; } .infobox ul li { width: 120px; height: 120px; border-radius: 50%; display: inline-block; margin: 0 20px; margin-top: 20px; overflow: hidden; position: relative; } .infobox ul li .icon { width: 120px; position: absolute; left: 0; } .infobox ul li .title { color: #A47167; position: absolute; text-align: center; top: 76px; width: 100%; } .shoplist { background-color: #F8F5BC; padding: 50px 80px; padding-bottom: 60px; } .shoplist ul { display: flex; gap: 20px; flex-wrap: wrap; } .shoplist .item { flex: 20%; background-color: #fff; border: 1px solid #ddd; padding: 10px; box-sizing: border-box; } .shoplist .item img { width: 100%; } .shoplist .item .title,.shoplist .item .price { color: #A47167; margin-top: 5px; } .shoplist .item .name,.shoplist .item .price span { color: #FDA6A0; margin-top: 5px; } .footer { height: 120px; line-height: 120px; text-align: center; color: #fff; background: url("./images/footer.png") repeat-x; margin-top: -10px; } </style> </head> <body> <div class="main"> <div class="top"> <div class="user"> <a href="#">登录 |</a> <a href="#">注册</a> </div> </div> <div class="nav"> <ul class="navlist"> <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> </div> <div class="banner"></div> <div class="infobox"> <ul> <li> <img class="icon" src="./images/list1.png" alt=""> <p class="title">提拉米苏</p> </li> <li> <img class="icon" src="./images/list2.png" alt=""> <p class="title">甜甜圈</p> </li> <li> <img class="icon" src="./images/list3.png" alt=""> <p class="title">芝士蛋糕</p> </li> <li> <img class="icon" src="./images/list4.png" alt=""> <p class="title">马卡龙</p> </li> <li> <img class="icon" src="./images/list5.png" alt=""> <p class="title">西式甜点</p> </li> </ul> </div> <div class="shoplist"> <ul> <li class="item"> <img src="./images/con1.jpg" alt=""> <p class="title">爱的N次方</p> <p class="name">马卡龙</p> <p class="price">价格:<span>30元</span></p> </li> <li class="item"> <img src="./images/con2.jpg" alt=""> <p class="title">果肉果冻</p> <p class="name">双色马卡龙</p> <p class="price">价格:<span>30元</span></p> </li> <li class="item"> <img src="./images/con3.jpg" alt=""> <p class="title">芒果味</p> <p class="name">补丁马卡龙</p> <p class="price">价格:<span>30元</span></p> </li> <li class="item"> <img src="./images/con4.jpg" alt=""> <p class="title">果冻荔枝味</p> <p class="name">多彩马卡龙</p> <p class="price">价格:<span>30元</span></p> </li> <li class="item"> <img src="./images/con5.jpg" alt=""> <p class="title">果冻巧克力</p> <p class="name">西式甜点</p> <p class="price">价格:<span>30元</span></p> </li> <li class="item"> <img src="./images/con6.jpg" alt=""> <p class="title">流动水果</p> <p class="name">提拉米苏</p> <p class="price">价格:<span>30元</span></p> </li> <li class="item"> <img src="./images/con7.jpg" alt=""> <p class="title">玫瑰花型</p> <p class="name">马卡龙</p> <p class="price">价格:<span>30元</span></p> </li> <li class="item"> <img src="./images/con8.jpg" alt=""> <p class="title">木买奶油</p> <p class="name">芝士蛋糕</p> <p class="price">价格:<span>30元</span></p> </li> </ul> </div> <div class="footer"> 西式甜点网版权所有2000-2016京ICP备08001421号 京公网安备110108007702 </div> </div> </body> </html>
#include <REGX52.H> #include <INTRINS.H> #include "app/Timer0.h" sbit left_lun_1 = P0^2; sbit left_lun_2 = P0^3; sbit right_lun_1 = P0^0; sbit right_lun_2 = P0^1; unsigned char SBUFs,DIAN_state; void UART_init(){ //9600bps@11.0592MHz SCON = 0x50; PCON |= 0x80; TMOD |= 0x20; //设置定时器模式 TL1 = 0xFA; //设定定时初值 TH1 = 0xFA; //设定定时初值 ES = 1; //开启接受 EA = 1; ET1 = 0; TR1 = 1; //定时器1开始计时 } void main (){ UART_init(); //初始化定时器1 Timer0Init(); //初始化定时器0 left_lun_1 = 0;left_lun_2 = 0;right_lun_1 = 0;right_lun_2 = 0; //默认状态 while(1){ } } void Delay1000us() //@11.0592MHz { unsigned char i, j; _nop_(); _nop_(); i = 200; j = 105; do { while (--j); } while (--i); } void UART_Routine() interrupt 4 { RI = 0; //SBUF为接受到的信息 SBUFs = SBUF; } void Timer0_Routine() interrupt 1 { static unsigned int T0Count; TL0 = 0x18; //设置定时初值 TH0 = 0xFC; //设置定时初值 T0Count++; if(T0Count >= 1000)T0Count = 0; if(SBUFs == 0x00){ //停止 left_lun_1 = 0;left_lun_2 = 0;right_lun_1 = 0;right_lun_2 = 0; DIAN_state = 0; } if(SBUFs == 0xFF){ //取消转弯 if(DIAN_state == 0) SBUFs = 0x00; if(DIAN_state == 1) SBUFs = 0x01; if(DIAN_state == 2) SBUFs = 0x02; } if(SBUFs == 0x01){ //前进 left_lun_1 = 0;left_lun_2 = 1;right_lun_1 = 0;right_lun_2 = 1; DIAN_state = 1; } if(SBUFs == 0x02){ //后退 left_lun_1 = 1;left_lun_2 = 0;right_lun_1 = 1;right_lun_2 = 0; DIAN_state = 2; } if(SBUFs == 0x03){ //转弯 左 right_lun_1 = 0;right_lun_2 = 1; if(DIAN_state == 1){ if(T0Count >= 4){ T0Count = 0; left_lun_1 = 0;left_lun_2 = 1; }else{ left_lun_1 = 0;left_lun_2 = 0; } }else if(DIAN_state == 2){ if(T0Count >= 4){ T0Count = 0; right_lun_1 = 1;right_lun_2 = 0; }else{ right_lun_1 = 0;right_lun_2 = 0; } } } if(SBUFs == 0x04){ //转弯 右 left_lun_1 = 0;left_lun_2 = 1; if(DIAN_state == 1){ if(T0Count >= 4){ T0Count = 0; right_lun_1 = 0;right_lun_2 = 1; }else{ right_lun_1 = 0;right_lun_2 = 0; } }else if(DIAN_state == 2){ if(T0Count >= 4){ T0Count = 0; left_lun_1 = 1;left_lun_2 = 0; }else{ left_lun_1 = 0;left_lun_2 = 0; } } } } P0口接了四个电机,0-3接口接两个电机,另外两个共享电源 前面调用了定时器0的void
关于interrupt函数用法: void +函数名+interrupt +数字0~4 0 表示外部中断0 1 表示定时器/计数器(T0) 2 外部中断1 3 定时器/计数器(T1) 4 串行口 0 一般作为定时器中断使用 4 一般作为串口接收/发送数据 用法: void 函数名() interrupt 4
import java.util.Scanner; //String字符串练习 public class Main { public static void main(String[] args) { char[] ch = new char[] {97,98,99,100}; String s1 = new String(ch); //ASCII码转为字符 System.out.println(s1); String a1 = new String("abc"); String a2 = new String("abc"); System.out.println(a1 == a2); //false 比较的是在堆里面存储的地址值,new出来的地址值不同 //字符串比较时会进行比较存储的地址值 //new 出来的String记录在堆中,直接赋值的String记录在串池中 String b1 = "abc"; String b2 = "abc"; System.out.println(b1 == b2); //true 不使用new并且指定的数据一直,地址也会相同 String c1 = new String("abc"); String c2 = "abc"; System.out.println(c1 == c2); //false 地址不同 String d1 = new String("abc"); String d2 = "abc"; System.out.println(d1.equals(d2)); //true 使用equals方法强制对字符串内容进行比较 Scanner sc = new Scanner(System.in); //搭配输入信息使用 System.out.printf("输入信息: "); String inp = sc.next(); String e = new String("abc"); System.out.println(inp.equals(e)); } }
Mysql外链约束规则
//使用截取隐藏手机号中间部分 public class demo1 { public static void main(String[] args) { String phone = "18153468453"; String start = phone.substring(0,4); String end = phone.substring(7); String newPhone = start + "****" + end; System.out.println(newPhone); } }
#include <REGX52.H> void Timer0Init(void) //1毫秒@12.000MHz { //AUXR &= 0x7F; //定时器时钟12T模式 TMOD &= 0xF0; //设置定时器模式 TMOD |= 0x01; //设置定时器模式 TL0 = 0x18; //设置定时初值 TH0 = 0xFC; //设置定时初值 TF0 = 0; //清除TF0标志 TR0 = 1; //定时器0开始计时 ET0 = 1; EA = 1; PT0 = 0; } /*定时器中断函数模板 void Timer0_Routine() interrupt 1 { static unsigned int T0Count; TL0 = 0x18; //设置定时初值 TH0 = 0xFC; //设置定时初值 T0Count+=1; if(T0Count>=1000){ T0Count = 0; //1s执行一次中断函数 } } */ 注解:定时器加到最大值65536,设置起始值为64536,定时器1us进行一次+1,那么1000us后就会超出一次定时器范围,就会执行一次中断程序。那么就是1000us执行一次中断函数,也就是1ms执行一次,那么执行1000次就是1s .h文件可在贴图里面看到
import random def create(): randomArr = [] while len(randomArr) < 6: randNumber = random.randint(1,33) if not randNumber in randomArr: randomArr.append(randNumber) randomArr.append(random.randint(1,16)) return randomArr def getUserInput(): userInput = [] while len(userInput) < 6: red_input = input("请输入第%d个红色球号码: " % (len(userInput)+1)) if red_input.isdigit(): red_input = int(red_input) if red_input >=1 and red_input <= 33: if not red_input in userInput: userInput.append(red_input) else: print("这个号码已经被选过了") else: print("请输入1-33之间的红球号码") else: print("请输入正确的号码") while len(userInput) < 7: blue_input = input("请输入蓝色球号码: ") if blue_input.isdigit(): blue_input = int(blue_input) if blue_input >=1 and blue_input <= 16: userInput.append(blue_input) else: print("请输入1-16之间的蓝球号码") else: print("请输入正确的号码") return userInput def getRedCount(arr,userInput): redCount = 0 for i in range(len(arr)): if arr[i] == userInput[i]: redCount += 1 return redCount def getBlueCount(arr,userInput): blueCount = 0 if arr[len(arr)-1] == userInput[len(userInput)-1]: blueCount = 1 return blueCount def getResult(redCount, blueCount): if(redCount == 6 and blueCount == 1): return "一等奖,中奖1000万" elif(redCount == 6 and blueCount == 0): return "二等奖,中奖500万" elif(redCount == 5 and blueCount == 1): return "三等奖,中奖3000" elif((redCount == 5 and blueCount == 0) or (redCount == 4 and blueCount == 1)): return "四等奖,中奖200元" elif((redCount == 4 and blueCount == 0) or (redCount == 3 and blueCount == 1) or (redCount == 2 and blueCount == 1)): return "五等奖,中奖10元" elif((redCount == 1 and blueCount == 0) or blueCount == 1): return "六等奖,中奖5元" return "未中奖" #创建中奖号码 arrNumber = create() #得到用户输入 userInput = getUserInput() #计算红球中奖个数 redCount = getRedCount(arrNumber,userInput) print("红球中奖个数: ",redCount) #计算蓝球中奖个数 blueCount = getBlueCount(arrNumber,userInput) print("蓝球中奖个数: ",blueCount) #最终结果 result = getResult(redCount, blueCount) print("中奖号码为",arrNumber) print("你输入的号码为",userInput) print(result)
import random tripCode = input("行程码与核算(y/n):") card = input("是否有卡(y/n):") cardMoney = input("输入卡余额") if cardMoney.isdigit(): cardMoney = float(cardMoney) if tripCode == "y": if card == "y": if cardMoney >= 200: codeNumber = random.randint(10000,99999) print("取卡成功,卡号为",codeNumber) else: print("余额不足,请先充值") else: print("请先开卡") else: print("请先完成行程码和核算") else: print("余额输入错误")
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style> .content { width: 980px; margin: auto; } .top { width: 100%; } .box { margin-top: 10px; position: relative; } .left { position: absolute; border-right: 1px solid #ddd; } .right { position: absolute; right: 0; margin-left: 10px; border-left: 1px solid #ddd; } .mid { position: absolute; left: 110px; } </style> </head> <body> <div class="content"> <img class="top" src="./images/top.jpg" alt="图片"> <div class="box"> <img class="left" src="./images/left.jpg" alt="图片"> <img class="mid" src="./images/mid.jpg" alt="图片"> <img class="right" src="./images/right.jpg" alt="图片"> </div> </div> </body> </html>
//StringBuilder类型示例 public class demo3 { public static void main(String[] args) { //StringBuilder 定义的数据是可改变的 //String 定义的数据是不可改变的,每次覆盖都会产生新的变量 StringBuilder strb1 = new StringBuilder("1123"); //必须使用new方法进行赋值,数据存储在堆中 strb1.append("abc"); //使用append在str1后面添加新的数据,类似一个伪数组同样可以通过charAt的方式访问索引 System.out.println(strb1.charAt(5)); //返回5索引的字符 System.out.println(strb1); StringBuilder strb2 = new StringBuilder("ceshi123"); strb2.reverse(); //容器内的数据进行翻转 String str = strb2.toString(); //StringBuilder类型转为String类型,返回String类型数据 System.out.println(strb2); System.out.println(str); } }
如图快捷键
void Delay_showNumber(unsigned int ms){ unsigned char i, j; while(--ms){ i = 2; j = 199; do { while (--j); } while (--i); } } void setNumber(unsigned char ledNumber, unsigned char number){ unsigned char ledShow[] = {0x3F,0x06,0x5B,0x4F,0x66,0x6D,0x7D,0x07,0x7F,0x6F,0x80}; switch(ledNumber){ case 8:P2_4 = 1; P2_3 = 1; P2_2 = 1; break; case 7:P2_4 = 1; P2_3 = 1; P2_2 = 0; break; case 6:P2_4 = 1; P2_3 = 0; P2_2 = 1; break; case 5:P2_4 = 1; P2_3 = 0; P2_2 = 0; break; case 4:P2_4 = 0; P2_3 = 1; P2_2 = 1; break; case 3:P2_4 = 0; P2_3 = 1; P2_2 = 0; break; case 2:P2_4 = 0; P2_3 = 0; P2_2 = 1; break; case 1:P2_4 = 0; P2_3 = 0; P2_2 = 0; break; } P0 = ledShow[number]; Delay_showNumber(2); P0 = 0x00; Delay_showNumber(1); } #注解内部自带一个延迟函数,可以被任意调用,输入值单位延迟ms .h文件在贴图内
需要使用Java中的Scanner类包: 在class上加入: import java.util.Scanner; 第二步骤就是将导入的包进行实体化调用: Scanner scanClass = new Scanner(System.in); 注意:这边只有 scanClass 是变量名称可以被更改,其他的都不可进行更改 最后就是调用这个类包: int input = scanClass.nextInt(); 这边的int是输入的参数为int整型 scanClass 是调用类的变量 完整代码示例: import java.util.Scanner; public class java20221216 { public static void main(String []args) { Scanner scanClass = new Scanner(System.in); /* 实体化类 */ System.out.print("请输入整数: "); float input = scanClass.nextInt(); System.out.println("输入的值为:" + input); } }
import java.util.Scanner; //罗马数字转换 public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); System.out.println("输入数字字符串"); String number = sc.next(); StringBuffer result = new StringBuffer(); if(checkNum(number)) { for (int i = 0; i < number.length(); i++) { String c = getLuoMa(number.charAt(i)); result.append(c); } }else{ System.out.println("请输入正确的数字"); } System.out.println(result); } public static boolean checkNum(String number) { if (number.length() == 0 || number.length() > 9){ return false; } for (int i = 0; i < number.length(); i++) { char n = number.charAt(i); if (n < '0' || n > '9') { return false; } } return true; } public static String getLuoMa(int number) { String[] numLuoMa = {" ","Ⅰ","Ⅱ","Ⅲ","Ⅳ","Ⅴ","Ⅵ","Ⅶ","Ⅷ","Ⅸ"}; return numLuoMa[number - 48]; //48对应数字0,如果输入1,对应ASCII码的49,那么减去48还是1 } }
Python常用的循环函数是 while 和 for 先说明while循环的格式 while 循环条件: 代码段 如: i = 10 while i > 0: i-=1 print(i) 将会依次打印出9 - 0 for循环也是类似: for 临时变量 in 目标对象: 代码段 如: for i in [0,1,2,3]: print(i) 将会打印出数据集内全部数据 当然也可以依次遍历字符串如: for i in "Python Go": print(i) 将会依次打印单个字符结果 死循环用法: while True: 代码段 另外可以用: while(循环条件) 以及 for(i in "Python")这种用括号包含条件的方法
#include <REGX52.H> char key_16(){ unsigned char KeyNumber = 0; /*第一列*/ P1 = 0xF7; switch(P1){ case 0x77: while(P1 == 0x77); KeyNumber = 1; break; case 0xB7: while(P1 == 0xB7); KeyNumber = 5; break; case 0xD7: while(P1 == 0xD7); KeyNumber = 9; break; case 0xE7: while(P1 == 0xE7); KeyNumber = 13; break; } /*第二列*/ P1 = 0xFB; switch(P1){ case 0x7B: while(P1 == 0x7B); KeyNumber = 2; break; case 0xBB: while(P1 == 0xBB); KeyNumber = 6; break; case 0xDB: while(P1 == 0xDB); KeyNumber = 10; break; case 0xEB: while(P1 == 0xEB); KeyNumber = 14; break; } /*第三列*/ P1 = 0xFD; switch(P1){ case 0x7D: while(P1 == 0x7D); KeyNumber = 3; break; case 0xBD: while(P1 == 0xBD); KeyNumber = 7; break; case 0xDD: while(P1 == 0xDD); KeyNumber = 11; break; case 0xED: while(P1 == 0xED); KeyNumber = 15; break; } /*第四列*/ P1 = 0xFE; switch(P1){ case 0x7E: while(P1 == 0x7E); KeyNumber = 4; break; case 0xBE: while(P1 == 0xBE); KeyNumber = 8; break; case 0xDE: while(P1 == 0xDE); KeyNumber = 12; break; case 0xEE: while(P1 == 0xEE); KeyNumber = 16; break; } return KeyNumber; }
C语言逗号运算符: int a = 10,b = 20,c = 0; 设置a变量等于10,b变量等于20,c变量等于0 逗号运算符写法: c = (a++,b+=10,a+=b); 注意:一定要用括号将内容包起来 括号内的表达式会从左往右执行,最后c的值会等于最后一个表达式,也就是a+=b 那么c最后会等于什么呢?有的人以为a+=b不就是a=a+b,最后不就是30吗,最后返回的值却是41,别忘了前面还有两个表达式,分别是a++和a+=b,执行完前面两个表达式后,a将会等于11,b会等于30,那么最后a+b就是11+30=41 当整个都好运算符执行完成后,最后a=41,b=30,c=41 为什么a也会等于41呢?因为最后一个表达式a+=b就是a=a+b也会执行,那么a还是会等于a+b也就是41。 写好的代码参考: #include <stdlib.h> int main() { int a = 10,b = 20,c; c = (a++,b+=10,a+=b); printf("%d,%d,%d",a,b,c); return(0); }
""" while 7过 i = 1 while i <= 100: i+=1 if i % 7 == 0 or i % 10 == 7: print("过") else: print(i) """ """ for 过 for i in range(1,101): if i % 7 == 0 or i % 10 == 7: print("过") else: print(i) """ """ while 打印星 i = 0 while i <= 5: j = 0 while j <= i: print("*",end="") j+=1 i+=1 print("\n") """ """ for 打印星 for i in range(6): for j in range(i): print("*",end="") print("\n") """ """ for 计算1-100的和 sum = 0 for i in range(1,101): sum += i print(sum) """ """ for 计算25-100之间偶数结果 sum = 0 for i in range(25,101): if i % 2 == 0: sum += i print(sum) """
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Custom Font Example</title> <style> /* 使用@font-face规则定义字体 */ @font-face { font-family: 'AkalTun'; /* 定义一个字体名 */ src: url('https://akaltun.cn/1/akaltun.ttf') format('truetype'); /* 指定字体文件和格式 */ } /* 应用自定义字体到body,也可以应用到其他元素 */ body { font-family: 'AkalTun', sans-serif; /* 将字体应用到body,如果字体加载失败则回退到sans-serif */ } </style> </head> <body> <div id="container"> <h1>欢迎来到我的网站ئۇيغۇرچە</h1> <p>这里是使用自定义字体的文本。</p> <!-- 其他内容 --> </div> </body> </html>
var timer = setTimeout(() => { console.log(1); }, 1000); 上面是一秒后执行打印函数 下面是每隔一秒执行一次打印函数 var timer = setInterval(() => { console.log(1); }, 1000);
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document2</title> <style> * { margin: 0; padding: 0; } li { list-style: none; } .main { width: 980px; margin: 0 auto; } .top { background: url("images/logo.jpg") no-repeat; background-position: 50px; height: 56px; line-height: 56px; margin-top: 10px; } .top .user { float: right; margin-right: 50px; } .top .user a { color: #FF9C00; text-decoration: none; } .nav { background-color: #FF9C00; height: 46px; margin-top: 10px; text-align: center; line-height: 46px; font-size: 16px; } .navlist li { display: inline-block; height: 100%; } .navlist li a { height: 100%; padding: 0 25px; color: #B55F23; text-decoration: none; display: inline-block; } .navlist li a:hover { background-color: #fca76a; } .banner { height: 432px; background: url("./images/banner.jpg") no-repeat center; background-size: cover; } .infobox { height: 160px; background-color: #E7BF80; } .infobox ul { text-align: center; } .infobox ul li { width: 120px; height: 120px; border-radius: 50%; display: inline-block; margin: 0 20px; margin-top: 20px; overflow: hidden; position: relative; } .infobox ul li .icon { width: 120px; position: absolute; left: 0; } .infobox ul li .title { color: #A47167; position: absolute; text-align: center; top: 76px; width: 100%; } .shoplist { background-color: #F8F5BC; padding: 50px 80px; padding-bottom: 60px; } .shoplist ul { display: flex; gap: 20px; flex-wrap: wrap; } .shoplist .item { flex: 20%; background-color: #fff; border: 1px solid #ddd; padding: 10px; box-sizing: border-box; } .shoplist .item img { width: 100%; } .shoplist .item .title,.shoplist .item .price { color: #A47167; margin-top: 5px; } .shoplist .item .name,.shoplist .item .price span { color: #FDA6A0; margin-top: 5px; } .footer { height: 120px; line-height: 120px; text-align: center; color: #fff; background: url("./images/footer.png") repeat-x; margin-top: -10px; } </style> </head> <body> <div class="main"> <div class="top"> <div class="user"> <a href="#">登录 |</a> <a href="#">注册</a> </div> </div> <div class="nav"> <ul class="navlist"> <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> </div> <div class="banner"></div> <div class="infobox"> <ul> <li> <img class="icon" src="./images/list1.png" alt=""> <p class="title">提拉米苏</p> </li> <li> <img class="icon" src="./images/list2.png" alt=""> <p class="title">甜甜圈</p> </li> <li> <img class="icon" src="./images/list3.png" alt=""> <p class="title">芝士蛋糕</p> </li> <li> <img class="icon" src="./images/list4.png" alt=""> <p class="title">马卡龙</p> </li> <li> <img class="icon" src="./images/list5.png" alt=""> <p class="title">西式甜点</p> </li> </ul> </div> <div class="shoplist"> <ul> <li class="item"> <img src="./images/con1.jpg" alt=""> <p class="title">爱的N次方</p> <p class="name">马卡龙</p> <p class="price">价格:<span>30元</span></p> </li> <li class="item"> <img src="./images/con2.jpg" alt=""> <p class="title">果肉果冻</p> <p class="name">双色马卡龙</p> <p class="price">价格:<span>30元</span></p> </li> <li class="item"> <img src="./images/con3.jpg" alt=""> <p class="title">芒果味</p> <p class="name">补丁马卡龙</p> <p class="price">价格:<span>30元</span></p> </li> <li class="item"> <img src="./images/con4.jpg" alt=""> <p class="title">果冻荔枝味</p> <p class="name">多彩马卡龙</p> <p class="price">价格:<span>30元</span></p> </li> <li class="item"> <img src="./images/con5.jpg" alt=""> <p class="title">果冻巧克力</p> <p class="name">西式甜点</p> <p class="price">价格:<span>30元</span></p> </li> <li class="item"> <img src="./images/con6.jpg" alt=""> <p class="title">流动水果</p> <p class="name">提拉米苏</p> <p class="price">价格:<span>30元</span></p> </li> <li class="item"> <img src="./images/con7.jpg" alt=""> <p class="title">玫瑰花型</p> <p class="name">马卡龙</p> <p class="price">价格:<span>30元</span></p> </li> <li class="item"> <img src="./images/con8.jpg" alt=""> <p class="title">木买奶油</p> <p class="name">芝士蛋糕</p> <p class="price">价格:<span>30元</span></p> </li> </ul> </div> <div class="footer"> 西式甜点网版权所有2000-2016京ICP备08001421号 京公网安备110108007702 </div> </div> </body> </html>
java的mvc三层架构分别是: View(界面层),Service(业务逻辑层),DAO(数据访问层) V:View 网页视图,为用户提供能够看到并且使用的界面,与用户直接进行交互。 M:Model,业务模型,处理业务 C:Controller,控制器,处理请求,调用模型和视图 dao层负责对数据进行直接操控,最底层 service层负责对传递过来的参数验证,以及其他逻辑验证操作。验证完毕访问dao层进行数据操控 servlet层负责接收参数,然后调用service层进行处理 三个层分工合作,有利于后期的功能维护,那层出了问题就去处理哪层
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document1</title> <style> * { padding: 0; margin: 0; } li { list-style: none; } a { color: #666; text-decoration: none; } .content { width: 1280px; margin: 0 auto; } .nav { height: 600px; background: url("images/bg.png") center; background-size: cover; } .navlist { padding: 30px 60px; box-sizing: border-box; text-align: center; } .navlist ul li { float: left; line-height: 60px; padding: 0 50px; font-size: 16px; } .seach { position: relative; width: 128px; height: 36px; margin-top: 12px; } .seach img { height: 16px; position: absolute; top: calc(50% - 8px); left: 10px; z-index: 10; } .seach .input { position: absolute; top: 0; left: 0; height: 100%; width: 100%; border: none; border-radius: 18px; font-size: 12px; padding-left: 32px; box-sizing: border-box; outline: none; color: #666 } .hot { text-align: center; margin-top: 20px; } .hotlist { margin-top: 20px; text-align: left; padding: 0 60px; box-sizing: border-box; } .hotlist .item .img img { width: 100%; } .hotlist .item .title { padding: 10px; box-sizing: border-box; font-weight: bold; font-size: 18px; color: #333; border-bottom: 1px solid #ddd; } .hotlist .item .info { padding: 10px; padding-bottom: 30px; color: #bbb; box-sizing: border-box; } .hotlist { display: flex; gap: 80px; } .bottomimage img { width: 100%; } .life { background-color: #E1EBF2; margin-top: 50px; text-align: center; padding: 30px 0; } .life ul { text-align: center; } .life ul li { display: inline-block; margin: 20px 20px; } .footer { height: 80px; background: url("images/footer_bg.jpg"); color: #fff; text-align: center; line-height: 80px; margin-top: 50px; } </style> </head> <body> <div class="content"> <div class="nav"> <div class="navlist"> <ul> <li> <img class="logo" src="./images/logo.png" alt=""> </li> <li><a href="#">网站首页</a></li> <li><a href="#">床和床垫</a></li> <li><a href="#">卧室纺织品</a></li> <li><a href="#">灯具照明</a></li> <li class="seach"> <img src="./images/f.png" alt=""> <input class="input" type="text" placeholder="输入商品名称"> <li> </ul> </div> </div> <div class="hot"> <img src="./images/dongtai.jpg" alt=""> <ul class="hotlist"> <li class="item"> <dt class="box"> <dd class="img"> <img src="./images/news1.jpg" alt=""> </dd> <dd class="title">BEST贝达</dd> <dd class="info">将杂乱无章的物品收纳到视线之外,在我怕门后要展示台的心爱之物!</dd> <dd class="bottomimage"><img src="./images/yinying.jpg" alt=""></dd> </dt> </li> <li class="item"> <dt class="box"> <dd class="img"> <img src="./images/news2.jpg" alt=""> </dd> <dd class="title">BEST贝达</dd> <dd class="info">将杂乱无章的物品收纳到视线之外,在我怕门后要展示台的心爱之物!</dd> <dd class="bottomimage"><img src="./images/yinying.jpg" alt=""></dd> </dt> </li> <li class="item"> <dt class="box"> <dd class="img"> <img src="./images/news3.jpg" alt=""> </dd> <dd class="title">BEST贝达</dd> <dd class="info">将杂乱无章的物品收纳到视线之外,在我怕门后要展示台的心爱之物!</dd> <dd class="bottomimage"><img src="./images/yinying.jpg" alt=""></dd> </dt> </li> </ul> </div> <div class="life"> <img src="./images/shenghuo.png" alt=""> <ul> <li><img src="./images/img1.jpg" alt=""></li> <li><img src="./images/img2.jpg" alt=""></li> <li><img src="./images/img3.jpg" alt=""></li> </ul> </div> </div> <div class="footer"> 爱家居版权所有2016-2026京ICP备222222222号 京公网安备2222222222222 </div> </body> </html>
双绞线 同轴电缆 光纤电缆 无线传输介质 局域网 广域网 城域网 公用网 专用网 计算机功能可归纳为 资源共享 信息传输 提高系统的可靠性 分布处理 增强系统的扩充性 Internet(因特网)是全球最大链接能力最强.... TCP/IP是Internet最基本的协议,别名为网络通信协议 TCP传输层,IP网络层,TCP是可靠传输,UDP是不可靠传输 TCP主要用在通信,UDP一般用在视频 TCP/IP分为四层: 网络接口层 互连网络层 传输层 应用层 计算机特点: 运算速度快 精准度高 具有记忆和逻辑判断能力 程序运行自动化 一个完整的硬件系统由 运算器 控制器 存储器 输入设备 输出设备组成 病毒 隐蔽性 破坏性 寄生性 物联网 应用层 网络层 感知层
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style> * { margin: 0; padding: 0; } .red { color: rgb(168, 26, 26); } .content { width: 420px; margin: 20px auto; } .title-box { background: #F5F5F5; height: 56px; border-top: 3px solid #333; border-bottom: 1px solid #ccc; } .title-box .title { font-weight: normal; float: left; line-height: 56px; padding: 0 10px; box-sizing: border-box; background-color: #fff; border-right: 1px solid #ccc; padding-top: 1px; } .title-box .more { font-weight: normal; float: right; line-height: 56px; margin-right: 10px; color: #666; } .show .showimage { margin-top: 10px; display: flex; justify-self: center; align-items: center; gap: 20px; flex-flow:row wrap } .showimage .imagebox { width: calc(50% - 10px); position: relative; height: 113px; } .imagebox .img { position: absolute; width: 100%; } .imagebox .text { position: absolute; bottom: 0; line-height: 26px; background-color: #444; opacity: 0.7; color: #fff; width: 100%; text-align: center; font-size: 15px; } .showist { margin-top: 10px; } .showist ul li { list-style:square; color: blue; font-size: 14px; margin: auto; list-style-position:inside; } .showist ul li span { color: #333; line-height: 32px; } .dashed { border-top: 1px dashed #ddd; margin: 10px 0; } </style> </head> <body> <div class="content"> <div class="title-box"> <h3 class="title">娱乐热点·时尚热点</h3> <span class="more">更多<b class="red">></b></span> </div> <div class="show"> <div class="showimage"> <div class="imagebox"> <img class="img" src="./images/t3/a1.jpg"> <p class="text">45岁杨钰莹热裤秀美腿</p> </div> <div class="imagebox"> <img class="img" src="./images/t3/a2.jpg"> <p class="text">港姐嘉明秀34D傲人身材</p> </div> </div> <div class="showist"> <ul> <li><span>艾米亚当斯秀酥胸长腿 张靓颖棉靴抢镜 花花公子比基尼喜庆</span></li> <li><span>热巴长裙仙气足 张静初素颜气色佳 阿拉蕾卷发撞脸张刺陵</span></li> </ul> </div> <div class="dashed"></div> <div class="showimage"> <div class="imagebox"> <img class="img" src="./images/t3/a3.jpg"> <p class="text">唐嫣郭型大衣散发蜜汁帅气</p> </div> <div class="imagebox"> <img class="img" src="./images/t3/a4.jpg"> <p class="text">真男2心机Girl全靠半永久</p> </div> </div> <div class="showist"> <ul> <li><span>艾米亚当斯秀酥胸长腿 张靓颖棉靴抢镜 花花公子比基尼喜庆</span></li> <li><span>热巴长裙仙气足 张静初素颜气色佳 阿拉蕾卷发撞脸张刺陵</span></li> </ul> </div> </div> </div> </body> </html>
<?php /** * 功能:Curl外部资源请求函数封装 */ function postUrl($url,$data=[]){ /* $url - 指向URL连接 $data - 提交POST数据 */ $ch=curl_init(); curl_setopt($ch,CURLOPT_POST, true); curl_setopt($ch,CURLOPT_RETURNTRANSFER, true); curl_setopt($ch,CURLOPT_URL,$url); curl_setopt($ch,CURLOPT_POST,count($data)); curl_setopt($ch,CURLOPT_POSTFIELDS,$data); $response=curl_exec($ch); curl_close($ch); $result = json_decode($response,true); return $result; } #发送POST请求
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>Document</title> <style> * { padding: 0; margin: 0; } div { box-sizing: border-box; color: #DE8786; } .mainbox { width: 980px; margin: 0 auto; } .nav { background-color: #FE9AB5; } .nav .item { display: inline-block; line-height: 46px; padding: 0 30px; color: #fff; } .banner { text-align: center; } .frombox { background: url("./images/content_bg.jpg"); padding: 0 180px; } .step { padding: 10px 0; } .step .tip { font-size: 20px; line-height: 42px; float: left; } .userinfo .title { border-bottom: 1px solid #FE9AB5; line-height: 42px; margin-bottom: 10px; } input { border: 1px solid #FE9AB5; } .tableinput { padding: 5px 30px; } .tableinput tr { margin: 10px 0; } .tableinput .info { width: 220px; height: 22px; } .tableinput tr .titles { text-align: right; } .tableinput select { width: 168px; border-color: #FE9AB5; color: #FE9AB5; } </style> </head> <body> <div class="content"> <div class="logo mainbox"> <img src="./images/logo.jpg" alt=""> </div> <div class="nav"> <ul class="mainbox"> <li class="item">首页</li> <li class="item">会员</li> <li class="item">活动</li> <li class="item">直播</li> <li class="item">视频</li> <li class="item" style="background-color: #FE9AB5;">注册</li> </ul> </div> <div class="banner"> <img src="./images/banner.jpg" alt=""> </div> <div class="frombox mainbox"> <div class="step"> <span class="tip">注册步骤:</span> <img src="./images/step.jpg" alt=""> </div> <div class="userinfo"> <p class="title">您的账号信息:</p> <table class="tableinput"> <tr> <td class="titles">注册方式:</td> <td><input type="radio"> E-main注册 <input type="radio"> 手机号码注册</td> </tr> <tr> <td>注册邮箱:</td> <td><input class="info" type="email"></td> </tr> <tr> <td class="titles">注册手机:</td> <td><input class="info" type="email"></td> </tr> <tr> <td class="titles">登录密码:</td> <td><input class="info" type="email"></td> </tr> <tr> <td class="titles">昵称:</td> <td><input class="info" type="email"></td> </tr> </table> </div> <div class="userinfo"> <p class="title">您的个人信息:</p> <table class="tableinput"> <tr> <td class="titles">性别:</td> <td><input type="radio"> 男 <input type="radio"> 女</td> </tr> <tr> <td class="titles">学历:</td> <td><select> <option value="初中">初中</option> <option value="高中">高中</option> <option value="大专">大专</option> <option value="本科">本科</option> </select></td> </tr> <tr> <td class="titles">所在城市:</td> <td><select> <option value="北京">北京</option> <option value="江西">江西</option> <option value="四川">四川</option> </select></td> </tr> </table> </div> </div> </div> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style> * { margin: 0; padding: 0; } .main-box { width: 420px; margin: 20px auto; } .nav { background: #F5F5F5; height: 56px; border-top: 3px solid #333; } .nav .title { font-weight: normal; float: left; line-height: 56px; padding: 0 10px; box-sizing: border-box; background-color: #fff; border-right: 1px solid #333; } .nav .more { font-weight: normal; float: right; line-height: 56px; } </style> </head> <body> <div class="main-box"> <div class="nav"> <h3 class="title">娱乐热点·时尚热点</h3> <span class="more">更多<b>></b></span> </div> </div> </body> </html>