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

网站建设后怎么写com域名的网址有哪些

网站建设后怎么写,com域名的网址有哪些,微网站和微信,精简版wordpress文章目录 一、效果演示二、Code1.HTML2.CSS 三、实现思路拆分 一、效果演示 实现了一个水滴登录页的效果。页面包含一个水滴形状的登录框和两个按钮#xff0c;登录框包括用户名、密码和登录按钮#xff0c;按钮分别为忘记密码和注册。整个页面的设计非常有创意#xff0c;采… 文章目录 一、效果演示二、Code1.HTML2.CSS 三、实现思路拆分 一、效果演示 实现了一个水滴登录页的效果。页面包含一个水滴形状的登录框和两个按钮登录框包括用户名、密码和登录按钮按钮分别为忘记密码和注册。整个页面的设计非常有创意采用了水滴形状和渐变色的设计使得页面看起来非常美观和舒适。同时登录框和按钮的动态效果也增强了页面的交互性和视觉效果。 二、Code 1.HTML !DOCTYPE html html langenheadmeta charsetUTF-8meta nameviewport contentwidthdevice-width, initial-scale1.0title水滴登录页/titlelink relstylesheet href./68-水滴登录页.css /headbodydiv classboxdiv classcontenth2登录/h2divinput typetext placeholder请输入用户名/divdivinput typepassword placeholder请输入密码/divdivinput typesubmit value登录/div/diva href# classbtns忘记密码/aa href# classbtns register注册/a/div /body/html2.CSS * {margin: 0;padding: 0;box-sizing: border-box; }body {height: 100vh;background: #eff0f4;overflow: hidden; }.box {position: relative;display: flex;justify-content: space-between;margin: 150px auto;width: 470px; }.box .content {position: relative;display: flex;flex-direction: column;justify-content: space-around;align-items: center;width: 350px;height: 350px;padding: 60px 20px;box-shadow: inset 20px 20px 20px rgba(0, 0, 0, 0.05),25px 35px 20px rgba(0, 0, 0, 0.05), 25px 30px 30px rgba(0, 0, 0, 0.05),inset -20px -20px 25px rgba(255, 255, 255, 0.9); }.box .content {border-radius: 52% 48% 33% 67% / 38% 45% 55% 62%;transition: 0.5s; }.box .content:hover {border-radius: 50%; }.box .content::before {content: ;position: absolute;top: 50px;left: 85px;width: 35px;height: 35px;border-radius: 50%;background: #fff;opacity: 0.9; }.box .content::after {content: ;position: absolute;top: 90px;left: 110px;width: 15px;height: 15px;border-radius: 50%;background: #fff;opacity: 0.9; }.box .content div {position: relative;width: 225px;border-radius: 25px;box-shadow: inset 2px 5px 10px rgba(0, 0, 0, 0.1),inset -2px -5px 10px rgba(255, 255, 255, 1),15px 15px 10px rgba(0, 0, 0, 0.05), 15px 10px 15px rgba(0, 0, 0, 0.025); }.box .content div::before {content: ;position: absolute;top: 8px;left: 50%;transform: translateX(-50%);width: 65%;height: 5px;background: rgba(255, 255, 255, 0.5);border-radius: 5px; }.box .content input {width: 100%;border: none;outline: none;background: transparent;font-size: 16px;padding: 10px 15px; }.box .content input[typesubmit] {color: #fff;cursor: pointer; }.box .content div:last-child {width: 120px;background: #ff0f5b;box-shadow: inset 2px 5px 10px rgba(0, 0, 0, 0.1),15px 15px 10px rgba(0, 0, 0, 0.05), 15px 10px 15px rgba(0, 0, 0, 0.025);transition: 0.5s; }.box .content div:last-child:hover {width: 150px; }.btns {position: absolute;right: 0;bottom: 0;width: 120px;height: 120px;background: #c61dff;display: flex;justify-content: center;align-items: center;cursor: pointer;text-decoration: none;color: #fff;font-size: 14px;box-shadow: inset 10px 10px 10px rgba(190, 1, 254, 0.05),15px 25px 10px rgba(190, 1, 254, 0.1), 15px 20px 20px rgba(190, 1, 254, 0.1),inset -10px -10px 15px rgba(255, 255, 255, 0.5);border-radius: 44% 56% 65% 35% / 57% 58% 42% 43%; }.register {bottom: 150px;right: 0px;width: 80px;height: 80px;border-radius: 49% 51% 52% 48% / 63% 59% 41% 37%;background: #01b4ff;box-shadow: inset 10px 10px 10px rgba(1, 180, 255, 0.05),15px 25px 10px rgba(1, 180, 255, 0.1), 15px 20px 20px rgba(1, 180, 255, 0.1),inset -10px -10px 15px rgba(255, 255, 255, 0.5); }.btns::before {content: ;position: absolute;top: 15px;left: 30px;width: 20px;height: 20px;border-radius: 50%;background: #fff;opacity: 0.45; }.register::before {left: 20px;width: 15px;height: 15px; }.btns {transition: 0.25s; }.btns:hover {border-radius: 50%; }三、实现思路拆分 * {margin: 0;padding: 0;box-sizing: border-box; }重置所有元素的默认样式。 body {height: 100vh;background: #eff0f4;overflow: hidden; }设置页面的背景颜色和尺寸。 .box {position: relative;display: flex;justify-content: space-between;margin: 150px auto;width: 470px; }设置登录表单容器的布局、位置和尺寸。 .box .content {position: relative;display: flex;flex-direction: column;justify-content: space-around;align-items: center;width: 350px;height: 350px;padding: 60px 20px;box-shadow: inset 20px 20px 20px rgba(0, 0, 0, 0.05),25px 35px 20px rgba(0, 0, 0, 0.05), 25px 30px 30px rgba(0, 0, 0, 0.05),inset -20px -20px 25px rgba(255, 255, 255, 0.9); }设置登录表单内容的样式包括3D效果和过渡动画。 .box .content::before {content: ;position: absolute;top: 50px;left: 85px;width: 35px;height: 35px;border-radius: 50%;background: #fff;opacity: 0.9; }.box .content::after {content: ;position: absolute;top: 90px;left: 110px;width: 15px;height: 15px;border-radius: 50%;background: #fff;opacity: 0.9; }创建伪元素以增强水滴效果。 .box .content div {position: relative;width: 225px;border-radius: 25px;box-shadow: inset 2px 5px 10px rgba(0, 0, 0, 0.1),inset -2px -5px 10px rgba(255, 255, 255, 1),15px 15px 10px rgba(0, 0, 0, 0.05), 15px 10px 15px rgba(0, 0, 0, 0.025); }设置输入框容器的样式包括阴影和边框圆角。 .box .content input {width: 100%;border: none;outline: none;background: transparent;font-size: 16px;padding: 10px 15px; }设置输入框的基本样式。 .box .content input[typesubmit] {color: #fff;cursor: pointer; }为提交按钮设置特定的样式。 .btns {position: absolute;right: 0;bottom: 0;width: 120px;height: 120px;background: #c61dff;display: flex;justify-content: center;align-items: center;cursor: pointer;text-decoration: none;color: #fff;font-size: 14px;box-shadow: inset 10px 10px 10px rgba(190, 1, 254, 0.05),15px 25px 10px rgba(190, 1, 254, 0.1), 15px 20px 20px rgba(190, 1, 254, 0.1),inset -10px -10px 15px rgba(255, 255, 255, 0.5);border-radius: 44% 56% 65% 35% / 57% 58% 42% 43%; }设置忘记密码和注册按钮的样式包括3D效果、阴影和过渡动画。 .register {bottom: 150px;right: 0px;width: 80px;height: 80px;border-radius: 49% 51% 52% 48% / 63% 59% 41% 37%;background: #01b4ff;box-shadow: inset 10px 10px 10px rgba(1, 180, 255, 0.05),15px 25px 10px rgba(1, 180, 255, 0.1), 15px 20px 20px rgba(1, 180, 255, 0.1),inset -10px -10px 15px rgba(255, 255, 255, 0.5); }为注册按钮设置特定的样式。 .btns::before {content: ;position: absolute;top: 15px;left: 30px;width: 20px;height: 20px;border-radius: 50%;background: #fff;opacity: 0.45; }.register::before {left: 20px;width: 15px;height: 15px; }.btns {transition: 0.25s; }.btns:hover {border-radius: 50%; }为按钮添加悬停效果和装饰性伪元素。
http://www.sczhlp.com/news/220016/

相关文章:

  • 建行企业网站设计素材的网站
  • 电商网站图片是谁做销售管理软件排名
  • 织梦网站多少钱哈尔滨市延寿建设局网站
  • 深圳沙井公司网站建设富民县住房和城乡规划建设局网站
  • 网站后台出现乱码更换wordpress图标
  • c2c网站功能模块设计沈阳泌尿科十大排行医院
  • 淳安县建设网站代理注册公司一般多少钱
  • 自动化释放5G全部潜力:新西兰电信One NZ的实践之路
  • 零六年自助建设网站网站开发实用技术第2版答案
  • 深圳龙华鸿宇大厦网站建设网站文章批量上传工具
  • 网站建设销售员PHP 网站开发 重点知识
  • 建设网站物业经理上岗证陈俊华做网站的关键词
  • 辽宁建设工程信息网诚信库怎么入库seo培训学院官网
  • 做视频网站用哪个cms腾讯企业qq
  • 旅游网站建设的目标是什么免费做做网站
  • 易趣网网站建设与维护网上购物有哪些网站?
  • 上市设计公司网站旅游网站设计规划书
  • 在哪个网站去租地方做收废站萍乡网站制作公司
  • 如何查网站死链免费个人网址
  • 湖北建设厅网站查询宝塔如何搭建网站
  • 深圳市手机网站建设哪家好pc网站转换成app
  • 网站移动转换信阳做网站的
  • php网站开发报告书滁州做网站优化
  • 老薛主机做多个网站上海网站建设公司案例
  • 网站域名审核时间网页标准化对网站开发维护者的好处
  • 提供做网站公司有哪些怎么注册logo商标
  • 设计网站项目描述php建设网站
  • 重庆集团公司网站建设投资网站建设方案
  • 怎么自己做视频网站互联网平面设计
  • 建设网站招聘aspnet通讯录网站开发