这个DEMO是使用CSS3制作的一个分步注册表单,每个input对应的是每一步,在表单得到焦点时,对应的step也会进行对应的改变。不过这个效果是使用js代码来实现,但整个表单的外观是由CSS3来完成的,整个案例中使用了:@font-face来制作icon图标,使用gradient来制作渐变的按钮效果,使用text-shadow来制作文字阴影效果等等,方便简单点,但细节与创意才是最重要的,喜欢的同学可以看看是怎么实现的吧
1. [文件] index.html 
<!DOCTYPE HTML>
<html lang="en-US">
<head>
    <meta charset="UTF-8">
    <title>CSS3制作分步注册表单|w3cplus</title>
    <meta name="keywords" content="css3学习,css3属性详解,css3 transition,如何学好css3">
    <meta name="description" content="W3CPLUS是一个前端爱好者的家园,W3CPLUS努力打造最优秀的web 前端学习的站点。W3CPLUS力求原创,以一起学习,一起进步,共同分享为原则。W3CPLUS站提供了有关于css,css3,html,html5,jQuery,手机移动端的技术文档、DEMO、资源,与前端爱好者一起共勉。">
    <link rel="shortcut icon" href="http://www.w3cplus.com/sites/all/themes/marvin/favicon.ico">
    <link rel="stylesheet" type="text/css" href="http://www.w3cplus.com/demo/css3/base.css" media="all" />
    <style type="text/css" >
body{
background:#1e1f20;
font-size:18px;
}
.login{ 
width: 330px; 
margin: 40px auto 0;
text-align: center;
}
.login h2{
font:italic 32px/40px "Impact";
letter-spacing:1px;
color:rgba(0,0,0,0);
background: -webkit-linear-gradient(top,#ffcf6b,#ffc54c 10%,#ffb320 40%,#c16e05);
background: -moz-linear-gradient(top,#ffcf6b,#ffc54c 10%,#ffb320 40%,#c16e05);
background: linear-gradient(top,#ffcf6b,#ffc54c 10%,#ffb320 40%,#c16e05);
-webkit-background-clip:text;
/*-webkit-text-stroke: 2px #000;*/
}
.login p{ 
color:#070606;
font-size:28px;
font-style:italic;
font-weight:bold;
text-shadow:1px 1px 0 rgba(255,255,255,.2),-1px -1px 0 rgba(255,255,255,.2);
}
.control-round{ 
position:relative; 
list-style:none;
height:5px;
border:1px solid #222222;
background:#101010;
margin:50px 0 40px;
}
.control-round label{
position:absolute; 
top:-18px;
font-family:"Impact";
width:36px;
color:#151515;
line-height:36px;
text-shadow:-1px -1px 1px #666,1px 1px 1px #666;
border-radius:18px;
border:1px solid #686868;
box-shadow:0 0 2px 2px rgba(0,0,0,.2);
background:-webkit-linear-gradient(top,#656565,#393939);
background:-moz-linear-gradient(top,#656565,#393939);
background:linear-gradient(top,#656565,#393939);
}
.control-round label.active{    
text-shadow:0 1px 0 #f5b738;
border:1px solid #c4883b;
background:-webkit-linear-gradient(top,#f6ae1b,#b46001);
background:-moz-linear-gradient(top,#f6ae1b,#b46001);
background:linear-gradient(top,#f6ae1b,#b46001);
}
.control-round label.active:after,
    .control-round label.active:before{
position:absolute; 
display:block; 
content:"";
border-style:solid;
left:50%;
top:40px;
}
.control-round label.active:after{
margin:5px 0 0 -6px;
border-width:6px;
border-color:#dc8e0f transparent transparent transparent;
z-index:3;
}
.control-round label.active:before{
margin:4px 0 0 -7px;    
border-width:7px;
border-color:#000 transparent transparent transparent;
z-index:2;
}
.control-round label:nth-child(1){
left:0;
}
.control-round label:nth-child(2){
left:50%;
margin-left:-18px;
}
.control-round label:nth-child(3){
right:0;
}
.control-group{
position:relative;
margin:20px 0;
}
.control-group:after{
position:absolute;
display:block;
top:10px;
left:12px;
width:25px;
color:rgba(255,255,255,.6);
text-align:center;
font-size:16px;
content: "\21";
font-family: 'icomoon';
font-style: normal;
speak: none;
font-weight: normal;
-webkit-font-smoothing: antialiased;
}
.control-group:nth-child(2):after{
content: "\22";
}
.control-group input{
padding-left:40px;
width:100%; 
height:44px; 
border-radius:22px;
border:1px solid #2b2b2b;
box-shadow:inset 0 0 10px rgba(0,0,0,1);
background:#151515;
-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
-moz-transition: border linear 0.2s, box-shadow linear 0.2s;
-o-transition: border linear 0.2s, box-shadow linear 0.2s;
-ms-transition: border linear 0.2s, box-shadow linear 0.2s;
transition: border linear 0.2s, box-shadow linear 0.2s;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-o-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}​http://www.huiyi8.com/huodong/​
.control-group input:focus{
box-shadow: inset 0 1px 3px rgba(255,255,255,0.1), 0 0 8px rgba(255,255,255, 0.6);
}活动总结论文
.form-actions{
text-align:right;
}
.form-actions .btn{
position:relative;
padding:0 20px;
margin-left:5px;
height:35px;
line-height:35px;
color:#000;
text-shadow:0 1px 0 #7f7f7f;    
border-radius:17px;
border:1px solid #4f4f4f;
box-shadow:0 0 3px #000;
background:-webkit-linear-gradient(top,#666666,#414141);
background:-moz-linear-gradient(top,#666666,#414141);
background:linear-gradient(top,#666666,#414141);
}
.form-actions .btn:hover{
background:-webkit-linear-gradient(top,#757575,#4e4e4e);
background:-moz-linear-gradient(top,#757575,#4e4e4e);
background:linear-gradient(top,#757575,#4e4e4e);
}
.form-actions .btn:active{
top:1px;
border:1px solid #111;
box-shadow:0 1px 1px #111 inset;
background:-webkit-linear-gradient(top,#4e4e4e,#4e4e4e);
background:-moz-linear-gradient(top,#4e4e4e,#4e4e4e);
background:linear-gradient(top,#4e4e4e,#4e4e4e);
}
.form-actions .btn[type=submit]{
border:1px solid #c36e0e;
text-shadow:0 1px 0 #f4a922;    
background:-webkit-linear-gradient(top,#f6ab15,#b46001);    
background:-moz-linear-gradient(top,#f6ab15,#b46001);
background:linear-gradient(top,#f6ab15,#b46001);
}
.form-actions .btn[type=submit]:hover{
background:-webkit-linear-gradient(top,#ffc145,#c26905);
background:-moz-linear-gradient(top,#ffc145,#c26905);
background:linear-gradient(top,#ffc145,#c26905);
}
.form-actions .btn[type=submit]:active{
border:1px solid #492700;
box-shadow:0 1px 2px #492700 inset;
background:-webkit-linear-gradient(top,#c16e05,#c16e05);
background:-moz-linear-gradient(top,#c16e05,#c16e05);
background:linear-gradient(top,#c16e05,#c16e05);
}
@font-face {
font-family: 'icomoon';
src:url('fonts/icomoon.eot');
src:url('fonts/icomoon.eot?#iefix') format('embedded-opentype'),
    url('fonts/icomoon.svg#icomoon') format('svg'),
    url('fonts/icomoon.woff') format('woff'),
    url('fonts/icomoon.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
    </style>
    <script type="text/javascript">
window.onload=function(){
    var oForm=document.getElementById('form-control');
    var aLabel=oForm.getElementsByTagName('label');
    var aInput=oForm.getElementsByTagName('input')
 
    for(var i=0;i<aLabel.length;i++){
        aInput[i].index=i;
        aLabel[i].onclick=function(){
            for(var i=0;i<aLabel.length;i++){
                aLabel[i].className=''; 
            }
            this.className='active';
        }
        aInput[i].onclick=function(){
            for(var i=0;i<aLabel.length;i++){
                aLabel[i].className=''; 
            }
            aLabel[this.index].className='active';
        }
    }
}
    </script>
</head>
<body>
<div class="wrap_top_nav">
    <nav id="top_nav">
        <ul class="inline-style clearfix">
            <li><a href="http://www.w3cplus.com" target="_blank">w3cplus</a></li>
            <li><a href="http://www.w3cplus.com/resources/css3-tutorial-and-case" target="_blank">css3详解教程</a></li>
            <li><a href="http://www.w3cplus.com/demos/list.html" target="_blank">css3实例</a></li>
            <li><a href="http://www.w3cplus.com/demo/tags/242.html" target="_blank">藤藤每日一练</a></li>
        </ul>
        <a id="read" href="http://www.w3cplus.com/demo/sign-up-form.html" target="_blank">查看原文>></a>
    </nav>
</div>
<div class="page">
    <header id="header">
        <hgrounp class="white">
            <h1>CSS3制作分步注册表单</h1>
            <h2>作者:藤藤(如有更好建议或疑问请加群:1041263)<h2>
        </hgrounp>
    </header> 
    <section class="demo">
 
        <div class="login" class="clearfix">
          <h2>Sign Up Form</h2>
          <p>with steps</p>
          <form method="post" action="" id="form-control" >
                <div class="control-round" id="control-round">
                    <label for="email" class="active">1</label>
                    <label for="password">2</label>
                    <label for="vpassword">3</label>
                </div>
                <div class="control-group">
                    <input  type="text"  name="loginName" id="email"  placeholder="Email Address">
                </div>
                <div class="control-group">
                    <input  type="text"  name="loginName" id="password" placeholder="Password">
                </div>
                <div class="control-group">
                    <input  type="text"  name="loginName" id="vpassword" placeholder="Verify Password">
                </div>
                <div class="form-actions">
                    <button class="btn" type="submit" >Sign Up</button>
                    <button class="btn" type="button" >Clear</button>
                </div>
          </form>
        </div>        
     
    </section>
</div>
</body>
</html>

CSS3制作分步注册表单的更多相关文章

  1. 免费 PSD 下载: 20个精美的登录和注册表单

    注册表单有许多不同的形状和尺寸,有的只是单个的输入框,有的则需要多个步骤.登录表单的设计将定义网站的性质,因此它应进行针对性的设计.下面的列表提供了20个醒目的登录和注册表单设计为您提供灵感. 您可能 ...

  2. Html注册表单示例

    注册表单示例,出自<网页开发手记:Html,CSS,JavaScript实战详解>.   <html>   <head>   <title>注册表单&l ...

  3. 如何利用WordPress创建自定义注册表单插件

    来源:http://www.ido321.com/1031.html 原文:Creating a Custom WordPress Registration Form Plugin 译文:创建一个定制 ...

  4. HTML6注册表单输入日志标题

    一.找到元素. var d = document.getElementById("") var d = document.getElementsByName("" ...

  5. 很酷的CSS3仿Facebook登录表单

    原文:很酷的CSS3仿Facebook登录表单 今天看到一款很不错的CSS3登录表单,外观是仿Facebook的登录表单,还挺不错的,另外也支持简单的表单输入框验证.下图是表单的效果图: 我们也可以在 ...

  6. form注册表单圆角 demo

    form注册表单圆角 <BODY> <div class="form"> <ul class="list"> <li& ...

  7. 模拟js中注册表单验证

    示例1 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8 ...

  8. UX设计秘诀之注册表单设计,细节决定成败

    以下内容由摹客团队翻译整理,仅供学习交流,摹客iDoc是支持智能标注和切图的产品协作设计神器. 说实话,现实生活中,又有多少人会真正喜欢填写表格?显然,并不多.因为填写表单这样的网页或App服务,并非 ...

  9. 基于HTML5手机登录注册表单代码

    分享一款基于HTML5手机登录注册表单代码.这是一款鼠标点击注册登录按钮弹出表单,适合移动端使用.效果图如下: 在线预览   源码下载 实现的代码. html代码: <div class=&qu ...

随机推荐

  1. jsp 页面导出excel时字符串数字变成科学计数法的解决方法

    web导出excel数据格式化 原文地址:http://www.cnblogs.com/myaspnet/archive/2011/05/06/2038490.html   当我们把web页面上的数据 ...

  2. springboot 中使用AOP

    网上关于AOP的例子好多,各种名词解释也一大堆,反正名词各种晦涩,自己写个最最最简单的例子入门mark一下,以后再深入学习. maven依赖 <dependency> <groupI ...

  3. 使用jstl标签报错:According to TLD or attribute directive in tag file, attribute value

    原来jstl标签版本不一样,标签支持不一样. jstl1.0标签库不支持表达式,如: <c:if test="${query01 == null}">   <js ...

  4. 创建一个动态Web项目:

    开始你的Eclipse,然后进入“文件”>“新建”>“动态Web项目,然后输入项目名称为HelloWorldStruts2和设置其他的选项,在下面的屏幕: 选择在屏幕上的所有默认选项,最后 ...

  5. [原]Nginx+Lua服务端合并静态文件

    http://homeway.me 0x01.About 源代码已经上传到github:https://github.com/grasses/nginx-lua-static-merger nginx ...

  6. BEGINNING SHAREPOINT&#174; 2013 DEVELOPMENT 第11章节--为Office和SP解决方式开发集成Apps Office新的App模型

    BEGINNING SHAREPOINT® 2013 DEVELOPMENT 第11章节--为Office和SP解决方式开发集成Apps  Office新的App模型         Office 2 ...

  7. 修改mysql数据库存储目录

    使用了VPS一段时间之后发现磁盘空间快满了.本人的VPS在购买的时候买了500gb的磁盘,提供商赠送了20GB的高性能系统磁盘.这样系统就有两个磁盘空间了.在初次安装mysql 的时候将数据库目录安装 ...

  8. BZOJ3211花神游历各国

    BZOJ3211花神游历各国 BZOJ luogu 分块 记一个all表示该块是否全部<=1,如果all不为真就暴力修改 因为一个数被开根的次数不多,即使\(10^{12}\)只要开根6次也会变 ...

  9. R语言数据管理(三):数据读入

    R的数据读入非常灵活,即可以在R软件中直接输入,也可以读入外部数据. 一.直接输入数据 ①c()函数 ②scan()函数 其功能类似c()函数,scan()实际上是一种键盘输入数据函数.当输入scan ...

  10. 淘宝开源平台(taobao-code)使用

    偶尔之下翻到的这个东西,瞬间觉得足以解决自己在开发过程中的版本控制问题.就注册了一个试试.先是在度娘上搜寻“淘code”,进入官网之后直接注册.然后构建自己的项目,上传代码就OK了. 一.搜寻“淘co ...