分享个后台登录主题

模板开发以及发布测试

版主: seita

回复
头像
ccizm
帖子: 26
注册时间: 2016年 8月 30日 12:12
联系:

分享个后台登录主题

帖子 ccizm »

从源码网站上看到了个好看的登录界面,因为没学过,就随便改了一下 = =//

代码: 全选

<?php
include 'common.php';

if ($user->hasLogin()) {
    $response->redirect($options->adminUrl);
}
$rememberName = Typecho_Cookie::get('__typecho_remember_name');
Typecho_Cookie::delete('__typecho_remember_name');

$bodyClass = 'body-100';

include 'header.php';
?>
<SCRIPT src="http://ccizm.com/js/jquery-1.9.1.min.js" type="text/javascript"></SCRIPT>
<STYLE>
body{
   background: #ebebeb;
   font-family: "Helvetica Neue","Hiragino Sans GB","Microsoft YaHei","\9ED1\4F53",Arial,sans-serif;
   color: #222;
   font-size: 12px;
}
*{padding: 0px;margin: 0px;}
.top_div{
   background: #008ead;
   width: 100%;
   height: 400px;
}
.ipt{
   border: 1px solid #d3d3d3;
   padding: 10px 10px;
   width: 290px;
   border-radius: 4px;
   padding-left: 35px;
   -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
   box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
   -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
   -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
   transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s
}
.ipt:focus{
   border-color: #66afe9;
   outline: 0;
   -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
   box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)
}
.u_logo{
   background: url("http://ccizm.com/images/username.png") no-repeat;
   padding: 10px 10px;
   position: absolute;
   top: 43px;
   left: 40px;

}
.p_logo{
   background: url("http://ccizm.com/images/password.png") no-repeat;
   padding: 10px 10px;
   position: absolute;
   top: 12px;
   left: 40px;
}
a{
   text-decoration: none;
}
.tou{
   background: url("http://ccizm.com/images/tou.png") no-repeat;
   width: 97px;
   height: 92px;
   position: absolute;
   top: -87px;
   left: 140px;
}
.left_hand{
   background: url("http://ccizm.com/images/left_hand.png") no-repeat;
   width: 32px;
   height: 37px;
   position: absolute;
   top: -38px;
   left: 150px;
}
.right_hand{
   background: url("http://ccizm.com/images/right_hand.png") no-repeat;
   width: 32px;
   height: 37px;
   position: absolute;
   top: -38px;
   right: -64px;
}
.initial_left_hand{
   background: url("http://ccizm.com/images/hand.png") no-repeat;
   width: 30px;
   height: 20px;
   position: absolute;
   top: -12px;
   left: 100px;
}
.initial_right_hand{
   background: url("http://ccizm.com/images/hand.png") no-repeat;
   width: 30px;
   height: 20px;
   position: absolute;
   top: -12px;
   right: -112px;
}
.left_handing{
   background: url("http://ccizm.com/images/left-handing.png") no-repeat;
   width: 30px;
   height: 20px;
   position: absolute;
   top: -24px;
   left: 139px;
}
.right_handinging{
   background: url("http://ccizm.com/images/right_handing.png") no-repeat;
   width: 30px;
   height: 20px;
   position: absolute;
   top: -21px;
   left: 210px;
}
</STYLE>
     
<SCRIPT type="text/javascript">
$(function(){
   //得到焦点
   $("#password").focus(function(){
      $("#left_hand").animate({
         left: "150",
         top: " -38"
      },{step: function(){
         if(parseInt($("#left_hand").css("left"))>140){
            $("#left_hand").attr("class","left_hand");
         }
      }}, 2000);
      $("#right_hand").animate({
         right: "-64",
         top: "-38px"
      },{step: function(){
         if(parseInt($("#right_hand").css("right"))> -70){
            $("#right_hand").attr("class","right_hand");
         }
      }}, 2000);
   });
   //失去焦点
   $("#password").blur(function(){
      $("#left_hand").attr("class","initial_left_hand");
      $("#left_hand").attr("style","left:100px;top:-12px;");
      $("#right_hand").attr("class","initial_right_hand");
      $("#right_hand").attr("style","right:-112px;top:-12px");
   });
});
</SCRIPT>
<!--<link rel="stylesheet" +
-+href="http://cdn.bootcss.com/bootstrap/3.2.0/css/bootstrap.min.css">-->
<!--<link rel="stylesheet" href="http://ccizm.com/usr/themes/Techo/style.css">
<link rel="stylesheet" href="http://cdn.amazeui.org/amazeui/2.7.2/css/amazeui.min.css">-->
<DIV class="top_div"></DIV>
<DIV style="background: rgb(255, 255, 255); margin: -100px auto auto; border: 1px solid rgb(231, 231, 231); border-image: none; width: 400px; height: 200px; text-align: center;">
<DIV style="width: 165px; height: 0px; position: absolute;" >
<DIV class="tou"></DIV>
<DIV class="initial_left_hand" id="left_hand"></DIV>
<DIV class="initial_right_hand" id="right_hand"></DIV></DIV>
<div class="typecho-login-wrap">
    <div class="typecho-login">
        <form action="<?php $options->loginAction(); ?>" method="post" name="login" role="form">
            <div class="form-group">
                <input type="text" class="ipt" id="name" name="name" value="<?php echo $rememberName; ?>" placeholder="<?php _e('用户名'); ?>" class="text-l w-100" />
            </div>
         <br>
            <div class="form-group ">
                <input type="password" class="ipt" id="password" name="password" class="text-l w-100" placeholder="<?php _e('密码'); ?>" />
            </div>
<br>
            <p class="submit">
                <button style="background: rgb(0, 142, 173); padding: 7px 10px; border-radius: 4px; border: 1px solid rgb(26, 117, 152); border-image: none; color: rgb(255, 255, 255); font-weight: bold;"  type="submit" class="am-btn am-btn-success"><?php _e('  登录  '); ?></button>
                <input type="hidden" name="referer" value="<?php echo htmlspecialchars($request->get('referer')); ?>" />
            </p>
<p class="more-link" style="margin-top: 1em;">
            <a style="color: rgb(204, 204, 204); margin-right: 10px;" href="<?php $options->siteUrl(); ?>" style="font-size:14px"><?php _e('返回首页'); ?></a>
            <?php if($options->allowRegister): ?>
            &bull;
            <a style="color: rgb(204, 204, 204); margin-right: 10px;" href="<?php $options->registerUrl(); ?>"><?php _e('用户注册'); ?></a>
            <?php endif; ?>
        </p>
<p><br>Copyright © <a href="http://ccizm.com">芝麻的小站</a></p>
        </form>
    </div>
</div>
<?php
include 'common-js.php';
?>
<script>
$(document).ready(function () {
    $('#name').focus();
});
</script>
<?php
include 'footer.php';
?>

图片
:roll: :roll: :roll: :roll: :roll:
上次由 ccizm 在 2016年 9月 3日 07:39,总共编辑 1 次。
头像
lzzd
帖子: 54
注册时间: 2016年 8月 29日 00:35
联系:

Re: 分享个后台主题-新手作品

帖子 lzzd »

躲猫猫我好像在哪里见过这个,输入密码时会蒙住眼。
头像
ccizm
帖子: 26
注册时间: 2016年 8月 30日 12:12
联系:

Re: 分享个后台主题-新手作品

帖子 ccizm »

lzzd 写了:躲猫猫我好像在哪里见过这个,输入密码时会蒙住眼。

对啊,我在源码站里看到的,然后就....
loststar
帖子: 10
注册时间: 2016年 6月 18日 22:19

Re: 分享个后台登录主题

帖子 loststar »

8-) 手机看貌似有点错位
头像
ClayMore
帖子: 2481
注册时间: 2007年 11月 29日 02:55
来自: Sleeping Forest
联系:

Re: 分享个后台登录主题

帖子 ClayMore »

登录后台尽量不要别人知道路径的好


__________________

新版阿里百秀Alibaixiu主题 v11.1 For Typecho
http://xiu.160.me/
回复