bfwui实现一个简洁的自适应表单美化页面代码
代码语言:html
所属分类:表单美化
代码描述:bfwui实现一个简洁的自适应表单美化页面代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width,initial-scale=1.0,maximum=1.0,minimum=1.0,user-scalable=0" /> <title>BFW NEW PAGE</title> <link type="text/css" rel="stylesheet" href="//repo.bfw.wiki/bfwrepo/css/bfw.css"> <style> #enform{ margin: 16px; } .radio-lab label{ margin-right: 10px; } button { cursor: pointer; outline: 0; -webkit-transition: all 0.3s; transition: all 0.2s; -webkit-box-sizing: border-box; box-sizing: border-box; border: 0; padding: 0; } .Btn_blue_normal { width: 200px; height: 48px; background-image: -webkit-gradient( linear, left top, left bottom, color-stop(4%, #648cff), to(#4172fa) ); background-image: linear-gradient(-180deg, #648cff 4%, #4172fa 100%); border: 1px solid rgba(51, 100, 237, 0.35); -webkit-box-shadow: 0 3px 4px 0 rgba(44, 71, 146, 0.32), inset 0 -2px 0 0 #3262e6; box-shadow: 0 3px 4px 0 rgba(44, 71, 146, 0.32), inset 0 -2px 0 0 #3262e6; border-radius: 3px; margin-left: -; font-size: 13px; color: #ffffff; letter-spacing: 0.7px; text-align: center; line-height: 16px; } .Btn_blue_normal:hover { -webkit-box-shadow: 0 8px 20px 0 rgba(44, 71, 146, 0.4); box-shadow: 0 8px 20px 0 rgba(44, 71, 146, 0.4); border-radius: 3px; -webkit-transform: scale(1.02); transform: scale(1.01) translateY(-2px); } .Btn_blue_normal:active { -webkit-box-shadow: 0 3px 4px 0 rgba(44, 71, 146, 0.32), inset 0 0px 0 0 #3262e6; box-shadow: 0 3px 4px 0 rgba(44, 71, 146, 0.32), inset 0 0px 0 0 #3262e6; background-image: -webkit-gradient( linear, left bottom, left top, from(#527ffc), color-stop(96%, #4172fa) ); background-image: linear-gradient(0deg, #527ffc 0%, #4172fa 96%); -webkit-transform: scale(0.98); transform: scale(1); } </style> </head> <body> <div class="bfw-row-100 bfw-s-row-100"> <h4 class="bfw-mar-l bfw-bline-1 bfw-pad-l " style="font-size:18px;">我的简历</h4> <div> <form id="enform" class="bfw-form bfw-mar-l" action="" method="post"> <div class="bfw-flex "> <div class="bfw-row-2 bfw-s-row-100"> <div class="bfw-form-input bfw-mar-l bfw-flex bfw-flex-column"> <label class="bfw-s-hide">姓名 / NAME:</label> <input type="text" placeholder="姓名" name="realname" /> </div> </div> <div class="bfw-row-2 bfw-s-row-100"> <div class="bfw-form-input bfw-mar-l bfw-flex bfw-flex-column"> <label class="bfw-s-hide">手机号码 / PHONE:</label> <input type="text" placeholder="手机号码" name="realname" /> </div> </div> </div> <div class="bfw-flex bfw-flex-wrap"> <div class="bfw-row-2 bfw-s-row-100"> <div class="bfw-form-input bfw-mar-l bfw-flex bfw-flex-column"> <label class="bfw-s-hide">出生年月 / BIRTH:</label> <input type="date" placeholder="姓名" name="realname" /> </div> </div> <div class="bfw-row-2 bfw-s-row-100"> <div class="bfw-form-input bfw-mar-l bfw-flex bfw-flex-column"> <label class="bfw-s-hide">性别 / SEX:</label> <select name="workprovince"> <option value="java">男</option> <option value="php">女</option> </select> </div> </div> </div> <div class="bfw-flex bfw-flex-wrap"> <div class="bfw-row-2 bfw-s-row-100"> <div class="bfw-form-input bfw-mar-l bfw-flex bfw-flex-column"> <label class="bfw-s-hide">状态 / STATE:</label> <select name="workprovince"> <option value="java">已离职随时可以上岗</option> <option value="php">在职中考虑更好机会</option> </select> </div> </div> <div class="bfw-row-2 bfw-s-row-100"> <div class="bfw-form-input bfw-mar-l bfw-flex bfw-flex-column"> <label class="bfw-s-hide">期望薪资 / SALRY:</label> <select name="workprovince"> <option value="java">5k-6k</option> <option value="php">6k-10k</option> </select> </div> </div> </div> <div class="bfw-flex bfw-flex-wrap"> <div class="bfw-row-2 bfw-s-row-100"> <div class="bfw-form-input bfw-mar-l bfw-flex bfw-flex-column"> <label class="bfw-s-hide">求职岗位 / WORK:</label> <select name="workprovince"> <option value="java">产品经理</option> <option value="php">seo</option> </select> </div> </div> <div class="bfw-row-2 bfw-s-row-100"> <div class="bfw-form-input bfw-mar-l bfw-flex bfw-flex-column"> <label class="bfw-s-hide">工作时间 / PHONE:</label> <select name="workprovince"> <option value="java">10年</option> <option value="php">seo</option> </select> </div> </div> </div> <div> <div class="bfw-form-input bfw-mar-l bfw-flex bfw-flex-column"> <label class="bfw-s-hide">个人优势 / ADVANTAGE:</label> <textarea class="bfw-width-100 bfw-height-100" placeholder="个人优势"></textarea> </div> </div> <div> <div class="bfw-form-input bfw-mar-l bfw-flex bfw-flex-column"> <label class="bfw-s-hide">工作经历 / WORK:</label> <textarea class="bfw-width-100 bfw-height-100" placeholder="工作经历"></textarea> </d.........完整代码请登录后点击上方下载按钮下载查看
网友评论0