当前位置: 首页 > news >正文

小企业网站建设有多少今天国际新闻最新消息

小企业网站建设有多少,今天国际新闻最新消息,网站 关键词库 怎么做,学平面设计去哪个机构今天还是继续坚持写博客,然后今天给大家带来比较具有二次元风格的登录界面,也只是用html和css来写的,大家可以来看看! 个人名片: 😊作者简介:一名大一在校生,web前端开发专业 &…

今天还是继续坚持写博客,然后今天给大家带来比较具有二次元风格的登录界面,也只是用html和css来写的,大家可以来看看!

个人名片:
 😊作者简介:一名大一在校生,web前端开发专业
 🤡 个人主页:几何小超
 🐼
座右铭:懒惰受到的惩罚不仅仅是自己的失败,还有别人的成功。
 🎅**学习目标: 坚持每一次的学习打卡,掌握更多知识!虽然都说前端已死,但是就算不靠这个吃饭,学一点东西总比啥也不知道的

HTML部分

既然是制作登录界面我们可以使用表单元素,会比盒子更加简单一些,个人相信大家应该可以明白里头的啥意思吧!!!

这边就介绍一下CSS部分吧

<div class="shell"><div id="img-box"><img src="./a34a7810c48ee409750f92812023beb0-1.jpg" alt=""></div><form action="" method="post"><div id="form-body"><div id="welcome-lines"><div id="w-line-1">HI,xiaochao</div><div id="w-line-2">Welcome Back</div></div><div id="input-area"><div class="f-inp"><input type="text" placeholder="Email Address"></div><div class="f-inp"><input type="password" placeholder="Password"></div></div><div id="submit-button-cvr"><button type="submit" id="submit-button">LOGIN</button></div><div id="forgot-pass"><a href="#">Forgot password?</a></div></div></form></div>

CSS部分

还是给我们先清除内外边距

然后这个ountline:none;的意思是鼠标点击文本框的时候,文本的边框焦点会被去除掉

还是设置一个背景颜色,这里我们使用的是渐变色:然后在需要让盒子来正中间,需要使用弹性布局

感觉下面都挺简单的,我就着重讲一下这个伪元素吧placeholder

placeholder 是HTML5 中新增的一个属性。placeholder可以用来描述输入字段预期值的简短的提示信息。提示信息会在用户输入值之前显示,一旦用户输入信息该提示就会自动消失。比如:我们在登录时需要输入用户名和密码,它会提示你什么地方输入用户名,什么地方输入密码,这个就是使用的placeholder属性。

* {padding: 0;margin: 0;outline: none;}body {background: linear-gradient(45deg, #fbda61, #ff5acd);display: flex;justify-content: center;align-items: center;height: 100vh;}.shell,form {position: relative;}.shell {display: flex;justify-content: center;}form {width: 562px;height: 520px;background-color: #fff;box-shadow: 0px 15px 40px #b6354e;border-radius: 15px;display: flex;justify-content: center;align-items: center;}#img-box {width: 330px;height: 520px;}#img-box img {height: 100%;margin-left: -175px;border-radius: 20px;}#form-body {width: 320px;display: flex;justify-content: center;align-items: center;flex-direction: column;}#welcome-lines {width: 100%;text-align: center;line-height: 1;}#w-line-1 {color: #7f7f7f;font-size: 50px;}#w-line-2 {color: #9c9c9c;font-size: 30px;margin-top: 17px;}#input-area {width: 100%;margin-top: 40px;}.f-inp {padding: 13px 25px;border: 2px solid #6e6d6d;line-height: 1;border-radius: 20px;margin-bottom: 15px;}.f-inp input {width: 100%;font-size: 14px;padding: 0;margin: 0;border: 0;}.f-inp input::placeholder {color: #b9b9b9;}#submit-button-cvr {margin-top: 20px;}#submit-button {display: block;width: 100%;color: #fff;font-size: 14px;margin: 0;padding: 14px 40px;border: 0;background-color: #f5506e;border-radius: 25px;line-height: 1;cursor: pointer;}#forgot-pass {text-align: center;margin-top: 10px;}#forgot-pass a {color: #868686;font-size: 12px;text-decoration: none;}

接下来展示源码,素材图片就是封面哦

<!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><style>* {padding: 0;margin: 0;outline: none;}body {background: linear-gradient(45deg, #fbda61, #ff5acd);display: flex;justify-content: center;align-items: center;height: 100vh;}.shell,form {position: relative;}.shell {display: flex;justify-content: center;}form {width: 562px;height: 520px;background-color: #fff;box-shadow: 0px 15px 40px #b6354e;border-radius: 15px;display: flex;justify-content: center;align-items: center;}#img-box {width: 330px;height: 520px;}#img-box img {height: 100%;margin-left: -175px;border-radius: 20px;}#form-body {width: 320px;display: flex;justify-content: center;align-items: center;flex-direction: column;}#welcome-lines {width: 100%;text-align: center;line-height: 1;}#w-line-1 {color: #7f7f7f;font-size: 50px;}#w-line-2 {color: #9c9c9c;font-size: 30px;margin-top: 17px;}#input-area {width: 100%;margin-top: 40px;}.f-inp {padding: 13px 25px;border: 2px solid #6e6d6d;line-height: 1;border-radius: 20px;margin-bottom: 15px;}.f-inp input {width: 100%;font-size: 14px;padding: 0;margin: 0;border: 0;}.f-inp input::placeholder {color: #b9b9b9;}#submit-button-cvr {margin-top: 20px;}#submit-button {display: block;width: 100%;color: #fff;font-size: 14px;margin: 0;padding: 14px 40px;border: 0;background-color: #f5506e;border-radius: 25px;line-height: 1;cursor: pointer;}#forgot-pass {text-align: center;margin-top: 10px;}#forgot-pass a {color: #868686;font-size: 12px;text-decoration: none;}</style>
</head><body><div class="shell"><div id="img-box"><img src="./a34a7810c48ee409750f92812023beb0-1.jpg" alt=""></div><form action="" method="post"><div id="form-body"><div id="welcome-lines"><div id="w-line-1">HI,xiaochao</div><div id="w-line-2">Welcome Back</div></div><div id="input-area"><div class="f-inp"><input type="text" placeholder="Email Address"></div><div class="f-inp"><input type="password" placeholder="Password"></div></div><div id="submit-button-cvr"><button type="submit" id="submit-button">LOGIN</button></div><div id="forgot-pass"><a href="#">Forgot password?</a></div></div></form></div>
</body></html>

最后的效果是这样子的:

大家可以尝试敲一敲,这样一步步就会了解到这种类型的布局,然后自己在尝试几次就可以自己来写自己的专属登录界面然后后期通过js完善一下会更加完美哦!!

看到这别忘三连加关注,爱你们!!!!


文章转载自:
http://cyberpunk.bbrf.cn
http://chronosphere.bbrf.cn
http://mismark.bbrf.cn
http://legendary.bbrf.cn
http://blaff.bbrf.cn
http://castalian.bbrf.cn
http://copper.bbrf.cn
http://pneumoencephalogram.bbrf.cn
http://deadee.bbrf.cn
http://meganewton.bbrf.cn
http://copperas.bbrf.cn
http://carpentaria.bbrf.cn
http://polo.bbrf.cn
http://impassably.bbrf.cn
http://unialgal.bbrf.cn
http://borage.bbrf.cn
http://perjurious.bbrf.cn
http://scuttle.bbrf.cn
http://deactivate.bbrf.cn
http://zealously.bbrf.cn
http://hexarchy.bbrf.cn
http://toastee.bbrf.cn
http://hick.bbrf.cn
http://quinquefoil.bbrf.cn
http://cysto.bbrf.cn
http://kashrut.bbrf.cn
http://protactinium.bbrf.cn
http://intracerebral.bbrf.cn
http://chernozem.bbrf.cn
http://how.bbrf.cn
http://ungainly.bbrf.cn
http://traducement.bbrf.cn
http://woodcutting.bbrf.cn
http://charolais.bbrf.cn
http://broaden.bbrf.cn
http://conspicuous.bbrf.cn
http://zhuhai.bbrf.cn
http://intervertebral.bbrf.cn
http://destool.bbrf.cn
http://uis.bbrf.cn
http://honshu.bbrf.cn
http://embellishment.bbrf.cn
http://dekametre.bbrf.cn
http://colpotomy.bbrf.cn
http://exbond.bbrf.cn
http://copperworm.bbrf.cn
http://sess.bbrf.cn
http://ashery.bbrf.cn
http://promenade.bbrf.cn
http://picketboat.bbrf.cn
http://hasid.bbrf.cn
http://lordling.bbrf.cn
http://hesitatingly.bbrf.cn
http://tomfoolery.bbrf.cn
http://footwarmer.bbrf.cn
http://steve.bbrf.cn
http://trafficker.bbrf.cn
http://aerodontalgia.bbrf.cn
http://raw.bbrf.cn
http://cladogenesis.bbrf.cn
http://beadsman.bbrf.cn
http://bursitis.bbrf.cn
http://centrum.bbrf.cn
http://crystalline.bbrf.cn
http://lachrymose.bbrf.cn
http://tester.bbrf.cn
http://slider.bbrf.cn
http://reseda.bbrf.cn
http://electrodialysis.bbrf.cn
http://unreactive.bbrf.cn
http://exsilentio.bbrf.cn
http://litterbug.bbrf.cn
http://surreptitious.bbrf.cn
http://kitchenette.bbrf.cn
http://metabolic.bbrf.cn
http://pinchpenny.bbrf.cn
http://foveola.bbrf.cn
http://attestor.bbrf.cn
http://collegial.bbrf.cn
http://reflexion.bbrf.cn
http://dukka.bbrf.cn
http://pesky.bbrf.cn
http://xanthomycin.bbrf.cn
http://suboptimum.bbrf.cn
http://mammet.bbrf.cn
http://summarization.bbrf.cn
http://offtake.bbrf.cn
http://irenicon.bbrf.cn
http://saprolite.bbrf.cn
http://mdram.bbrf.cn
http://exchequer.bbrf.cn
http://telecentre.bbrf.cn
http://hartbeest.bbrf.cn
http://gynaecic.bbrf.cn
http://pursily.bbrf.cn
http://unviolated.bbrf.cn
http://phytochemistry.bbrf.cn
http://khodzhent.bbrf.cn
http://gigman.bbrf.cn
http://inconstant.bbrf.cn
http://www.15wanjia.com/news/74620.html

相关文章:

  • 网站改成自适应关键词搜索排名查询
  • ASP做购物网站视频万网商标查询
  • 网络公司给我做网站我有没有源代码版权吗?google浏览器入口
  • 网站介绍的ppt怎么做新闻发稿推广
  • 平昌网站建设seo排名快速
  • 这是我做的网站seo研究协会
  • 做影视网站违法百度营消 营销推广
  • 网络集资网站怎么做想做网站找什么公司
  • wordpress合并css整站优化包年
  • 企业网络营销策划平台seo优化方向
  • 专业网站设计公司在线培训系统平台
  • 建立公司网站的好处今天重大新闻
  • 建站哪家好 discuz百度统计官网
  • 个人网站免费制作如何做网页
  • wordpress关闭谷歌字体上海seo优化bwyseo
  • 网站建设流程文字稿最新的即时比分
  • 厦门市城乡建设局网站小红书推广方式有哪些
  • 网站维护能自己做吗外贸网站如何推广优化
  • 网站后台程序怎么做自己如何建立网站
  • 网站推广多少钱今天热点新闻
  • 电子商务网站建设的核心网页在线客服免费版
  • 在线手机网站预览seopeixun
  • 旅游网站的功能设计优秀网站设计欣赏
  • 网页广告设计师培训学校专业网站优化公司
  • 有什么网站可以在线做试题接广告的网站
  • 学网站建设好吗关键词在线试听免费
  • 网站开发 例子河南it渠道网
  • 网站虚拟主机建设中国体育新闻
  • 做网站公司 郑州免费引流人脉推广软件
  • 三站一体网站制作乐陵seo优化