运用HTML5+CSS3和CSS滤镜做的精美的登录界面

原始出处http://chenjinfei.blog.51cto.com/2965201/774865
  1. <!DOCTYPE HTML
  2. <html
  3. <head
  4. <meta http-equiv="Content-Type" content="text/html; charset=gb2312"
  5. <meta http-equiv="description" content="运用CSS3和CSS滤镜做的精美的登录界面,无用到图片的喔!"
  6. <meta http-equiv="author" content="chenjinfei"
  7. <meta http-equiv="date" content="2012-2-6"
  8. <title>登录</title
  9. <link rel="stylesheet" href="style/common/common.css"
  10. <style type="text/css"
  11. body { 
  12.     margin:0; 
  13.     padding:0; 
  14.     background-color:#E4E8EC; 
  15. .wrap { 
  16.     margin:150px auto; 
  17.     width:380px; 
  18.     overflow:hidden; 
  19. .loginForm { 
  20.     box-shadow: 0 0 2px rgba(0, 0, 0, 0.2), 0 1px 1px rgba(0, 0, 0, 0.2), 0 3px 0 #fff, 0 4px 0 rgba(0, 0, 0, 0.2), 0 6px 0 #fff, 0 7px 0 rgba(0, 0, 0, 0.2); 
  21.     position:absolute; 
  22.     z-index:0; 
  23.     background-color:#FFF; 
  24.     border-radius:4px; 
  25.     height:250px; 
  26.     width:380px; 
  27.     background: -webkit-gradient(linear, left top, left 24, from(#EEE), color-stop(4%, #FFF), to(#EEE)); 
  28.     background: -moz-linear-gradient(top, #EEE, #FFF 1px, #EEE 24px); 
  29.     background: -o-linear-gradient(top, #EEEEEE, #FFFFFF 1px, #EEEEEE 24px); 
  30. .loginForm:before { 
  31.     content:''; 
  32.     position:absolute; 
  33.     z-index:-1; 
  34.     border:1px dashed #CCC; 
  35.     top:5px; 
  36.     bottom:5px; 
  37.     left:5px; 
  38.     right:5px; 
  39.     box-shadow: 0 0 0 1px #FFF; 
  40. .loginForm h1 { 
  41.     text-shadow: 0 1px 0 rgba(255, 255, 255, .7), 0px 2px 0 rgba(0, 0, 0, .5); 
  42.     text-transform:uppercase; 
  43.     text-align:center; 
  44.     color:#666; 
  45.     line-height:3em; 
  46.     margin:16px 0 20px 0; 
  47.     letter-spacing: 4px; 
  48.     font:normal 26px/1 Microsoft YaHei, sans-serif; 
  49. fieldset { 
  50.     border:none; 
  51.     padding:10px 10px 0; 
  52. fieldset input[type=text] { 
  53.     background:url(style/default/images/user.png) 4px 5px no-repeat; 
  54. fieldset input[type=password] { 
  55.     background:url(style/default/images/password.png) 4px 5px no-repeat; 
  56. fieldset input[type=text], fieldset input[type=password] { 
  57.     width:100%; 
  58.     line-height:2em; 
  59.     font-size:12px; 
  60.     height:24px; 
  61.     border:none; 
  62.     padding:3px 4px 3px 2.2em; 
  63.     width:300px; 
  64. fieldset input[type=submit] { 
  65.     text-align:center; 
  66.     padding:2px 20px; 
  67.     line-height:2em; 
  68.     border:1px solid #FF1500; 
  69.     border-radius:3px; 
  70.     background: -webkit-gradient(linear, left top, left 24, from(#FF6900), color-stop(0%, #FF9800), to(#FF6900)); 
  71.     background: -moz-linear-gradient(top, #FF6900, #FF9800 0, #FF6900 24px); 
  72.     background:-o-linear-gradient(top, #FF6900, #FF9800 0, #FF6900 24px); 
  73. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF9800', endColorstr='#FF6900'); 
  74.     -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF9800', endColorstr='#FF6900')"; 
  75.     height:30px; 
  76.     cursor:pointer; 
  77.     letter-spacing: 4px; 
  78.     margin-left:10px; 
  79.     color:#FFF; 
  80.     font-weight:bold; 
  81. fieldset input[type=submit]:hover { 
  82.     background: -webkit-gradient(linear, left top, left 24, from(#FF9800), color-stop(0%, #FF6900), to(#FF9800)); 
  83.     background: -moz-linear-gradient(top, #FF9800, #FF6900 0, #FF9800 24px); 
  84.     background:-o-linear-gradient(top, #FF6900, #FF6900 0, #FF9800 24px); 
  85. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF6900', endColorstr='#FF9800'); 
  86.     -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF6900', endColorstr='#FF9800')"; 
  87. .inputWrap { 
  88.     background: -webkit-gradient(linear, left top, left 24, from(#FFFFFF), color-stop(4%, #EEEEEE), to(#FFFFFF)); 
  89.     background: -moz-linear-gradient(top, #FFFFFF, #EEEEEE 1px, #FFFFFF 24px); 
  90.     background: -o-linear-gradient(top, #FFFFFF, #EEEEEE 1px, #FFFFFF 24px); 
  91.     border-radius:3px; 
  92.     border:1px solid #CCC; 
  93.     margin:10px 10px 0; 
  94. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#EEEEEE', endColorstr='#FFFFFF'); 
  95.     -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#EEEEEE', endColorstr='#FFFFFF')"; 
  96. fieldset input[type=checkbox] { 
  97.     margin-left:10px; 
  98.     vertical-align:middle; 
  99. fieldset a { 
  100.     color:blue; 
  101.     font-size:12px; 
  102.     margin:6px 0 0 10px; 
  103.     text-decoration:none; 
  104. fieldset a:hover { 
  105.     text-decoration:underline; 
  106. fieldset span { 
  107.     font-size:12px; 
  108. </style
  109. <!--为了让IE支持HTML5元素,做如下操作:--> 
  110. <!--[if IE]
  111. <script type="text/javascript"
  112. document.createElement("section"); 
  113. document.createElement("header"); 
  114. document.createElement("footer"); 
  115. </script
  116. <![endif]--
  117. </head
  118.  
  119. <body
  120. <div class="wrap"
  121.   <form action="#" method="post"
  122.     <section class="loginForm"
  123.       <header
  124.         <h1>登录</h1
  125.       </header
  126.       <div class="loginForm_content"
  127.         <fieldset
  128.           <div class="inputWrap"
  129.             <input type="text" name="userName" placeholder="邮箱/会员帐号/手机号" autofocus required
  130.           </div
  131.           <div class="inputWrap"
  132.             <input type="password" name="password" placeholder="请输入密码" required
  133.           </div
  134.         </fieldset
  135.         <fieldset
  136.           <input type="checkbox" checked="checked"
  137.           <span>下次自动登录</span
  138.         </fieldset
  139.         <fieldset
  140.           <input type="submit" value="登录"
  141.           <href="#">忘记密码?</a<href="#">注册</a
  142.         </fieldset
  143.       </div
  144.     </section
  145.   </form
  146. </div
  147. </body
  148. </html 

转载于:https://www.cnblogs.com/sky-net/p/4702218.html

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

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

相关文章

MyEclipse使用总结——MyEclipse文件查找技巧 ctrl+shift+R ctrl+H

一、查找文件 使用快捷键【ctrlshiftR】弹出弹出文件查找框&#xff0c;如下图所示&#xff1a; 二、查找包含某个字符串的文件 使用快捷键【ctrlH】在弹出对话框中选File Search选项&#xff0c;然后在第一个文本框中粘贴&#xff08;我一般用粘贴&#xff09;或自已手动录入&…

java实现控件绑定数据源_控件(三)——TreeView控件以XmlDataSource控件为数据源实现简单的绑定...

TreeView控件功能非常强大&#xff0c;今天&#xff0c;我们只是窥其一角。我们实现的例子是&#xff1a;TreeView控件与XmlDataSource控件绑定&#xff0c;然后在网页显示选中项。首先我们添加一个xml&#xff0c;取名为tv.xml。在其中写上如下代码&#xff1a;这时我们在defa…

手机屏幕原理和设计(触摸屏幕)

//本文参考了很多百度百科的知识  随着android手机的流行&#xff0c;手机触摸屏成为一个时尚。再购机的时候&#xff0c;就会有很多人去问手机的触屏是电阻式的还是电容式的呢&#xff1f;但是其实很多人应该是不知道个中的原委的。只是一个感觉电容式的一定要比电阻式的好。…

extjs5(05--主界面上加入顶部和底部区域)

这一节为主界面加一个顶部区域和底部区域。一个管理系统的界面可以粗分为顶部标题部分、中间数据展示和处理的部分、底部备注和状态部分。 在增加这二个区域之前&#xff0c;我们先在MainModel.js中加入一些数据。 1 Ext.define(app.view.main.MainModel, {2 extend: Ext.a…

java mongo 查询数组_MongoDB查询(数组、内嵌文档)

一、简介我们上一篇介绍了db.collection.find()可以实现根据条件查询和指定使用投影运算符返回的字段省略此参数返回匹配文档中的所有字段&#xff0c;我们今天介绍了对数组和内嵌文档的查询操作&#xff0c;尤其是对$elemMatch 同样可以用在find方法的第二个参数来限制返回数组…

手机触摸屏的分类和原理,供大家选择手机时用

转载自&#xff1a;http://www.51testing.com/?uid-144635-action-viewspace-itemid-216296 必大家很关心的一个问题就是手机的触摸屏寿命是多少吧&#xff01;还有就是到底是电阻式触摸屏&#xff08;诺基亚的&#xff09;好还是电容式触摸屏&#xff08;iPhone等&#xff09…

Actionbarsherlock Demo 浅析 :Overlay

让Actionbar处于覆盖模式&#xff0c;当Activity需要显示大量滚动的内容&#xff0c;尤其是包含图片内容的时候&#xff0c;Overlay模式非常有效。 requestWindowFeature(Window.FEATURE_ACTION_BAR_OVERLAY);//将Actionbar设置为Overlay模式。 getSupportActionBar().setBackg…

浅析C#中构建多线程应用程序

*************************************************** 更多精彩&#xff0c;欢迎进入&#xff1a;http://shop115376623.taobao.com *************************************************** 引言 1.理解多线程 2. 线程异步与线程同步 3.创建多线程应用程序 3.1通过System.Threa…

58同城高性能移动Push推送平台架构演进之路

2019独角兽企业重金招聘Python工程师标准>>> 本文详细讲述58同城高性能移动Push推送平台架构演进的三个阶段&#xff0c;并介绍了什么是移动Push推送&#xff0c;为什么需要&#xff0c;原理和方案对比&#xff1b;移动Push推送第一阶段&#xff08;单平台&#xff…

java不规则算法_分布式id生成算法 snowflake 详解

背景在复杂分布式系统中&#xff0c;往往需要对大量的数据和消息进行唯一标识。如在支付流水号、订单号等&#xff0c;随者业务数据日渐增长&#xff0c;对数据分库分表后需要有一个唯一ID来标识一条数据或消息&#xff0c;数据库的自增ID显然不能满足需求&#xff0c;此时一个…

Android中下载、安装和卸载(原)

应用场景&#xff1a;在检查版本更新的时候经常需要从服务器端下载然后安装到手机中 使用工具&#xff1a; XUtils&#xff0c;这个开源的框架真的是需要花大把时间去阅读和理解的&#xff0c;十分有用的&#xff0c;on the way &#xff01; fighting&#xff01; 下载&#x…

python对文件进行读写操作

2019独角兽企业重金招聘Python工程师标准>>> python进行文件读写的函数是open或file file_handler open(filename,,mode&#xff09; Table mode 模式描述r以读方式打开文件&#xff0c;可读取文件信息。w以写方式打开文件&#xff0c;可向文件写入信息。如文件存在…

[转]VisualStudio如何组织解决方案的目录结构

*************************************************** 更多精彩&#xff0c;欢迎进入&#xff1a;http://shop115376623.taobao.com *************************************************** 解决方案与项目&#xff1a; 从VC6之后VC系列就使用解决方案&#xff08;Solution&…

java几种删除_几种删除Linux目录的方法

在Linux中有很多方法可以删除目录&#xff0c;在图形化界面可以利用文件管理器&#xff0c;或者通过终端删除。本文将介绍在文本界面使用命令删除目录。使用rmdir删除目录Rmdir命令间成“remove directory”&#xff0c;用于删除空目录的命令。例如&#xff0c;删除一个名为“M…

【SpringMVC】SpringMVC系列6之@CookieValue 映射请求Cookie 值

6、CookieValue 映射请求Cookie 值 6.1、示例 CookieValue 可让处理方法入参绑定某个 Cookie 值&#xff0c;示例如下&#xff1a;

杭电OJ-2104_hide handkerchief超简洁代码

#include<iostream> using namespace std; int n, m;; int zz(int a, int b) {return b0 ? a: zz(b, a%b); } int main() {while (cin >> n >> m&&n ! -1 && m ! -1)cout << (nb(n, m) 1 ? "YES" : "POOR Haha"…

c# Invoke和BeginInvoke

*************************************************** 更多精彩&#xff0c;欢迎进入&#xff1a;http://shop115376623.taobao.com *************************************************** 转自&#xff1a;http://blog.3snews.net/html/30/34530-27563.html在多线程编程中&am…

Oracle手边常用70则脚本知识汇总

Oracle手边常用70则脚本知识汇总 作者&#xff1a;白宁超 时间&#xff1a;2016年3月4日13:58:36 摘要: 日常使用oracle数据库过程中&#xff0c;常用脚本命令莫不是用户和密码、表空间、多表联合、执行语句等常规操作。另外表的导入导出也很常用&#xff0c;这些脚步命令之前都…

php常见的面试题目

一. 基本知识点1.1 HTTP协议中几个状态码的含义:503 500 401 403 404 200 301 302。。。200 : 请求成功&#xff0c;请求的数据随之返回。301 : 永久性重定向。302 : 暂时行重定向。401 : 当前请求需要用户验证。403 : 服务器拒绝执行请求&#xff0c;即没有权限。404 : 请求失…

VS2010断点设置技巧

*************************************************** 更多精彩&#xff0c;欢迎进入&#xff1a;http://shop115376623.taobao.com *************************************************** 许多Visual Studio下的程序员&#xff0c;甚至一些很有经验的开发人员&#xff0c;都不…