WordPress后臺(tái)的登錄頁(yè)面默認(rèn)就是一個(gè)登錄的表單,背景什么的都是白茫茫的一片??淳昧诉€真有點(diǎn)膩。今天就分享一下美化后臺(tái)登錄界面的簡(jiǎn)易教程。
首先,打開(kāi)你的主題的"functions.php",拉倒最后面,在最后一行的 “?>” 前面添加如下代碼:
/** * WordPress 登錄界面美化 **/ functioncustom_login_style() { echo'<link rel="stylesheet"id="wp-admin-css"href="'.get_bloginfo('template_directory').'/admin-style.css"type="text/css"/>'; } add_action('login_head', 'custom_login_style');
再新建一個(gè)css文件,命名為“admin-style.css”,css內(nèi)容如下:
body{ font-family: "Microsoft YaHei", Helvetica, Arial, Lucida Grande, Tahoma, sans-serif; width:100%; height:100%; background: url(http://img.infinitynewtab.com/InfinityWallpaper/2_14.jpg) no-repeat; -moz-background-size: cover; /*背景圖片拉伸以鋪滿全屏*/ -ms-background-size: cover; -webkit-background-size: cover; background-size: cover; } /*頂部的logo*/ .login h1 a { background:url(images/logo.png) no-repeat; background-size: 220px50px; width: 220px; height: 50px; padding: 0; margin: 0 auto1em; border: none; -webkit-animation: dropIn 1s linear; animation: dropIn 1s linear; } /*登錄框表單*/ .login form, .login .message { background: #fff; background: rgba(255, 255, 255, 0.3); border-radius: 3px; border: 1pxsolid#fff; border: 1pxsolidrgba(255, 255, 255, 0.4); -webkit-animation: fadeIn 1s linear; animation: fadeIn 1s linear; } /*登錄框輸入框*/ .login label { color: #000; } .login .message { color: #000; } #user_login{ font-size: 18px; line-height: 32px; } /* 返回博客與忘記密碼鏈接 */ #backtoblog a, #nava { color: #fff!important; display: inline-block; -webkit-animation: rtol 1s linear; animation: rtol 1s linear; } /*掉落的動(dòng)畫(huà)效果*/ @-webkit-keyframes dropIn { 0% { -webkit-transform: translate3d(0, -100px, 0) } 100% { -webkit-transform: translate3d(0, 0, 0) } } @keyframes dropIn { 0% { transform: translate3d(0, -100px, 0) } 100% { transform: translate3d(0, 0, 0) } } /*逐漸出現(xiàn)的動(dòng)畫(huà)效果*/ @-webkit-keyframes fadeIn { from { opacity: 0; -webkit-transform: scale(.8) translateY(20px) } to { opacity: 1; -webkit-transform: scale(1) translateY(0) } } @keyframes fadeIn { from { opacity: 0; transform: scale(.8) translateY(20px) } to { opacity: 1; transform: scale(1) translateY(0) } } /*從右往左的動(dòng)畫(huà)效果*/ @-webkit-keyframes rtol { from { -webkit-transform: translate(80px, 0) } to { -webkit-transform: translate(0, 0) } } @keyframes rtol { from { transform: translate(80px, 0) } to { transform: translate(0, 0) } }
你可以自由修改第5行的背景圖片和第14行的logo圖片。修改好后保存,并上傳到當(dāng)前主題的目錄即可。
完了,就這么簡(jiǎn)單……
版權(quán)聲明: 本站資源均來(lái)自互聯(lián)網(wǎng)或會(huì)員發(fā)布,如果侵犯了您的權(quán)益請(qǐng)與我們聯(lián)系,我們將在24小時(shí)內(nèi)刪除!謝謝!
轉(zhuǎn)載請(qǐng)注明: wordpress登錄頁(yè)美化教程