返回顶部
首页 > 资讯 > 前端开发 > JavaScript >怎么用css3制作网站后台管理面板
  • 599
分享到

怎么用css3制作网站后台管理面板

2024-04-02 19:04:59 599人浏览 泡泡鱼
摘要

这篇文章主要讲解了“怎么用css3制作网站后台管理面板”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“怎么用CSS3制作网站后台管理面板”吧!html结构代码

这篇文章主要讲解了“怎么用css3制作网站后台管理面板”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“怎么用CSS3制作网站后台管理面板”吧!

html结构

代码如下:


<div class="admin-panel clearfix">
 <div class="slidebar">
   <div class="loGo">
     <a href=""></a>
   </div>
   <ul>
     <li><a href="#dashboard" id="targeted">dashboard</a></li>
     <li><a href="#posts">posts</a></li>
     <li><a href="#media">media</a></li>
     <li><a href="#pages">pages</a></li>
     <li><a href="#links">links</a></li>
     <li><a href="#comments">comments</a></li>
     <li><a href="#widgets">widgets</a></li>
     <li><a href="#plugins">plugins</a></li>
     <li><a href="#users">users</a></li>
     <li><a href="#tools">tools</a></li>
     <li><a href="#settings">settings</a></li>
   </ul>
 </div>
 <div class="main">
   <ul class="topbar clearfix">
     <li><a href="#">q</a></li>
     <li><a href="#">p</a></li>
     <li><a href="#">o</a></li>
     <li><a href="#">f</a></li>
     <li><a href="#">n</a></li>
   </ul>
   <div class="mainContent clearfix">
     <div id="dashboard">
       <h3 class="header"><span class="icon"></span>Dashboard</h3>
         <div class="monitor">
           <h5>Right Now</h5>
           <div class="clearfix">
             <ul class="content">
               <li>content</li>
               <li class="posts"><span class="count">179</span><a href="">posts</a></li>
               <li class="pages"><span class="count">13</span><a href="">pages</a></li>
               <li class="categories"><span class="count">21</span><a href="">categories</a></li>
               <li class="tags"><span class="count">305</span><a href="">tags</a></li>
             </ul>
             <ul class="discussions">
               <li>discussions</li>
               <li class="comments"><span class="count">353</span><a href="">comments</a></li>
               <li class="approved"><span class="count">319</span><a href="">approved</a></li>
               <li class="pending"><span class="count">0</span><a href="">pending</a></li>
               <li class="spam"><span class="count">34</span><a href="">spam</a></li>
            </ul>
          </div>
          <p>Theme <a href="">Twenty Eleven</a> with <a href="">3 widgets</a></p>
        </div>
        <div class="quick-press">
          <h5>Quick Press</h5>
          <fORM action="" method="post">
            <input type="text" name="title" placeholder="Title"/>
            <input type="text" name="content" placeholder="Content"/>
            <input type="text" name="tags" placeholder="Tags"/>
            <button type="button" class="save">l</button>
            <button type="button" class="delet">m</button>
            <button type="submit" class="submit" name="submit">Publish</button>
          </form>
        </div>
      </div>
      <div id="posts">
        <h3 class="header">posts</h3>
      </div>
      <div id="media">
        <h3 class="header">media</h3>
      </div>
      <div id="pages">
        <h3 class="header">pages</h3>
      </div>
      <div id="links">
        <h3 class="header">links</h3>
      </div>
      <div id="comments">
        <h3 class="header">comments</h3>
      </div>
      <div id="widgets">
        <h3 class="header">widgets</h3>
      </div>
      <div id="plugins">
        <h3 class="header">plugins</h3>
      </div>
      <div id="users">
        <h3 class="header">users</h3>
      </div>
      <div id="tools">
        <h3 class="header">tools</h3>
      </div>
      <div id="settings">
        <h3 class="header">settings</h3>
      </div>
    </div>
    <ul class="statusbar">
      <li><a href=""></a></li>
      <li><a href=""></a></li>
      <li class="profiles-setting"><a href="">s</a></li>
      <li class="logout"><a href="">k</a></li>
    </ul>
  </div>
</div>

CSS 代码

代码如下:


body {
background-color: rgb(220,220,220);
padding: 0;
margin: 0;
font-size: 16px;
font-family: sans-serif;
}
.clearfix:after {
content: "";
display: block;
height: 0;
width: 0;
clear: both;
}
.admin-panel {
width: 990px;
margin: 50px auto;
}

.slidebar {
width: 20%;
min-height: 690px;
float: left;
border-right: 1px solid rgb(235,235,235);
background-color: rgb(247,247,247);
}
.slidebar .logo {
height: 145px;
border-bottom: 1px solid rgb(235,235,235);
}
.slidebar ul {
padding: 0;
margin:0;
}
.slidebar li {
list-style-type: none;
margin: 0;
position: relative;
}
.slidebar li:before {
content: "";
font-family: 'icomoon';
speak: none;
font-weight: normal;
font-variant: normal;
text-transform: none;
position: absolute;
display: block;
line-height: 40px;
color: rgb(102,102,102);
right: 20px;
-WEBkit-font-smoothing: antialiased;
}

.slidebar li:nth-child(1):before {content: "\63";}
.slidebar li:nth-child(2):before {content: "\64";}
.slidebar li:nth-child(3):before {content: "\62";}
.slidebar li:nth-child(4):before {content: "\65";}
.slidebar li:nth-child(5):before {content: "\74";}
.slidebar li:nth-child(6):before {content: "\66";}
.slidebar li:nth-child(7):before {content: "\67";}
.slidebar li:nth-child(8):before {content: "\68";}
.slidebar li:nth-child(9):before {content: "\69";}
.slidebar li:nth-child(10):before {content: "\6a";}
.slidebar li:nth-child(11):before {content: "\75";}
.slidebar ul a {
color: rgb(140,140,140);
text-decoration: none;
font:16px/40px helvetica,verdana,sans-serif;
box-sizing:border-box;
border-bottom: 1px solid rgb(235,235,235);
display: block;
box-shadow:inset 0 1px 0 rgb(255,255,255);
text-indent: 20px;
text-transform: capitalize;
}
.slidebar li:hover a {
background-color: rgb(255,255,255);
box-shadow: 1px 0 0 rgb(255,255,255),inset 5px 0 0 -1px rgb(234,83,63);
}

.main {
float: left;
width: 79%;
height: 690px;
background-color: rgb(255,255,255);
position: relative;
font-family: helvetica,verdana,sans-serif;
}
.main .topbar {
border-bottom: 1px solid rgb(235,235,235);
margin: 0;
padding: 0;
}

.topbar li {
float: right;
list-style: none;
}
.topbar li:first-child {float: left;}
.topbar a {
font-family: 'icomoon';
display: block;
line-height: 50px;
width: 50px;
text-align: center;
text-decoration: none;
color: rgb(102,102,102);
border-left: 1px solid rgb(235,235,235);
}
.topbar a:hover {
background-color: rgb(247,247,247);
}
.topbar li:first-child a {
border: none;
border-right: 1px solid rgb(235,235,235);
}

.mainContent h5 {
line-height: 1;
font-size: 18px;
margin: 1.3em 0 1em;
margin-left: 17px;
}
.mainContent>div {
position: absolute;
opacity: 0;
-webkit-transition:opacity 200ms linear;
-moz-transition:opacity 200ms linear;
-ms-transition:opacity 200ms linear;
transition:opacity 200ms linear;
}

.mainContent>div:target {
opacity: 1;
}
.mainContent h3 {
margin:1em 30px;
color: rgb(234,83,63);
font-size: 20px;
}
.mainContent h3:before {
font-family: 'icomoon';
content: attr(data-icon);
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
margin-right: 10px;
-webkit-font-smoothing: antialiased;
}
.mainContent div:nth-child(1) h3:before {content: "\63";}
.mainContent div:nth-child(2) h3:before {content: "\64";}
.mainContent div:nth-child(3) h3:before {content: "\62";}
.mainContent div:nth-child(4) h3:before {content: "\65";}
.mainContent div:nth-child(5) h3:before {content: "\74";}
.mainContent div:nth-child(6) h3:before {content: "\66";}
.mainContent div:nth-child(7) h3:before {content: "\67";}
.mainContent div:nth-child(8) h3:before {content: "\68";}
.mainContent div:nth-child(9) h3:before {content: "\69";}
.mainContent div:nth-child(10) h3:before {content: "\6a";}
.mainContent div:nth-child(11) h3:before {content: "\75";}
#dashboard>div {
border: 1px solid rgb(235,235,235);
margin-left: 30px;
float: left;
border-radius: 5px;
min-width: 345px;
height: 262px;
display: inline-block;
}
.monitor ul {
float: left;
padding: 0;
margin: 0 31px 0 17px;
}
.monitor li {
list-style:none;
font: 600 14px/28px helvetica,verdana,sans-serif;
color: rgb(102,102,102);
text-transform: capitalize;
}
.monitor li a {
color: rgb(102,102,102);
text-transform: capitalize;
text-decoration: none;
}
.monitor li:first-child {
border-bottom: 1px dotted rgb(153,153,153);
}
.discussions .comments {color: rgb(27,106,173);}
.discussions .approved {color: rgb(105,174,48);}
.discussions .pending {color: rgb(246,129,15);}
.discussions .spam {color: rgb(243,47,47);}
.monitor .count {
color: rgb(27,106,173);
text-align: right;
font-weight: 600;
margin-right: 15px;
min-width: 25px;
display: inline-block;
}
.monitor p {
color: rgb(128,128,128);
margin: 28px 0 18px 17px;
display: block;
font-weight: 600;
font-size: 12px;
}
.monitor p a {
text-decoration: none;
color:rgb(27,106,173);
}
.quick-press form {
margin:0 20px 0 13px;
}
.quick-press input[type="text"] {
display: block;
width: 100%;
-moz-box-sizing:border-box;
box-sizing:border-box;
height: 35px;
line-height: 15px;
padding: 10px 0;
margin:0 0 7px 0;
background-color: rgb(246,246,246);
outline: none;
border: none;
text-indent: 10px;
}

.quick-press input[type="text"]::-webkit-input-placeholder {font-size: 14px;}
.quick-press input[type="text"]:-moz-input-placeholder {font-size: 14px;}
.quick-press input[type="text"]::-moz-input-placeholder {font-size: 14px;}
.quick-press input[type="text"]:-ms-input-placeholder {font-size: 14px;}
.quick-press button {
margin-top: 13px;
border-radius: 5px;
text-align: center;
line-height: 30px;
padding: 0;
}
.quick-press .save, .quick-press .delet {
font-family: 'icomoon';
width: 37px;
background: -webkit-linear-gradient(top,rgb(246,246,240),rgb(232,232,232));
background: -moz-linear-gradient(top,rgb(246,246,240),rgb(232,232,232));
background: -ms-linear-gradient(top,rgb(246,246,240),rgb(232,232,232));
background: linear-gradient(top,rgb(246,246,240),rgb(232,232,232));
border: 1px solid rgb(229,229,229);
color: rgb(102,102,102);
float: left;
margin-right: 5px;
}
.quick-press .save:hover, .quick-press .delet:hover {
background: -webkit-linear-gradient(top,rgb(232,232,232),rgb(246,246,240));
background: -moz-linear-gradient(top,rgb(232,232,232),rgb(246,246,240));
background: -ms-linear-gradient(top,rgb(232,232,232),rgb(246,246,240));
background: linear-gradient(top,rgb(232,232,232),rgb(246,246,240));
}
.quick-press .save:active, .quick-press .delet:active {
background: -webkit-linear-gradient(top,rgb(228,228,228),rgb(210,210,210));
background: -moz-linear-gradient(top,rgb(228,228,228),rgb(210,210,210));
background: -ms-linear-gradient(top,rgb(228,228,228),rgb(210,210,210));
background: linear-gradient(top,rgb(228,228,228),rgb(210,210,210));
}
.quick-press .submit {
float: right;
width: 70px;
border: 1px solid rgb(238,85,64);
color: #fff;
font-size: 16px;
background: -webkit-linear-gradient(top,rgb(245,101,82),rgb(234,83,63));
background: -moz-linear-gradient(top,rgb(245,101,82),rgb(234,83,63));
background: -ms-linear-gradient(top,rgb(245,101,82),rgb(234,83,63));
background: linear-gradient(top,rgb(245,101,82),rgb(234,83,63));
}
.quick-press .submit:hover {
background: -webkit-linear-gradient(top,rgb(220,85,70),rgb(210,65,53));
background: -moz-linear-gradient(top,rgb(220,85,70),rgb(210,65,53));
background: -ms-linear-gradient(top,rgb(220,85,70),rgb(210,65,53));
background: linear-gradient(top,rgb(220,85,70),rgb(210,65,53));
}

.logo a {
width: 88px;
height: 88px;
display: inline-block;
position: relative;
left: 50%;
top: 50%;
margin: -45px 0 0 -45px;
border: 1px solid rgb(200,200,200);
border-radius: 50%;
background-color: rgb(214,214,214);
}
.logo a:before {
content: "A";
width: 70px;
height: 70px;
font: 50px/70px helvetica,verdana,sans-serif;
text-align: center;
position: absolute;
top: 8px;
left: 8px;
border-radius: 35px;
border: 1px solid rgb(210,210,210);
display: inline-block;
background: -webkit-linear-gradient(top,rgb(255,255,255),rgb(245,245,245));
background: -moz-linear-gradient(top,rgb(255,255,255),rgb(245,245,245));
background: -ms-linear-gradient(top,rgb(255,255,255),rgb(245,245,245));
background: linear-gradient(top,rgb(255,255,255),rgb(245,245,245));
}

.statusbar {
position: absolute;
bottom: 0;
border-top: 1px solid rgb(235,235,235);
width: 100%;
padding: 0;
margin: 0;
}
.statusbar li {
list-style: none;
}
.statusbar a {
color: rgb(102,102,102);
text-decoration: none;
text-align: center;
display: block;
}
.statusbar a:hover {
background-color: rgb(247,247,247);
}
.statusbar .profiles-setting, .statusbar .logout {
float: right;
}
.statusbar .profiles-setting a, .statusbar .logout a {
font-family: 'icomoon';
width: 49px;
height: 49px;
line-height: 50px;
border-left: 1px solid rgb(235,235,235);
}
@font-face {
font-family: 'icomoon';
src:url('fonts/icomoon.eot');
src:url('fonts/icomoon.eot?#iefix') format('embedded-opentype'),
url('fonts/icomoon.woff') format('woff'),
url('fonts/icomoon.ttf') format('truetype'),
url('fonts/icomoon.svg#icomoon') format('svg');
font-weight: normal;
font-style: normal;
}

感谢各位的阅读,以上就是“怎么用css3制作网站后台管理面板”的内容了,经过本文的学习后,相信大家对怎么用css3制作网站后台管理面板这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是编程网,小编将为大家推送更多相关知识点的文章,欢迎关注!

--结束END--

本文标题: 怎么用css3制作网站后台管理面板

本文链接: https://lsjlt.com/news/77870.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
  • 怎么用css3制作网站后台管理面板
    这篇文章主要讲解了“怎么用css3制作网站后台管理面板”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“怎么用css3制作网站后台管理面板”吧!HTML结构代码...
    99+
    2024-04-02
  • css3如何制作网站后台管理面板
    这篇文章主要为大家展示了“css3如何制作网站后台管理面板”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“css3如何制作网站后台管理面板”这篇文章吧。HTML结...
    99+
    2024-04-02
  • 使用node.js 制作网站前台后台
    node.js 能做什么?我至今也不清楚,他在哪方面应用比较广泛,我没有机会接触到那样的项目。只是因为喜欢,业余时间做了一个网站和后台。深刻领悟到一个道理那就是如果你喜欢一项技术可以玩玩,但是如果用到项目...
    99+
    2022-06-04
    前台 制作网站 后台
  • 怎么用Django定制和扩展后台管理界面
    在Django中定制和扩展后台管理界面可以通过以下方式实现: 使用自定义模型管理器:可以通过定义自定义模型管理器来扩展后台管理界...
    99+
    2024-04-02
  • 网页后台管理系统界面怎么设计
    1. 风格选择:选择简洁、清晰、易用的风格,避免过多的花哨和繁琐的设计,让用户能够快速找到需要的功能。2. 布局设计:采用简单明了的...
    99+
    2023-06-08
    后台管理系统界面
  • nvidia控制面板拒绝访问管理怎么设置
    今天小编给大家分享一下nvidia控制面板拒绝访问管理怎么设置的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧。nvidia控制...
    99+
    2023-07-01
  • 怎么使用Laravel admin后台管理插件
    本篇内容主要讲解“怎么使用Laravel admin后台管理插件”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“怎么使用Laravel admin后台管理插件”吧...
    99+
    2024-04-02
  • spring boot+thymeleaf+bootstrap怎么编写后台管理系统界面
    这篇文章主要介绍“spring boot+thymeleaf+bootstrap怎么编写后台管理系统界面”,在日常操作中,相信很多人在spring boot+thymeleaf+bootstrap怎么编写后台管理系统界面问题上存在疑惑,小编...
    99+
    2023-05-30
    spring boot thymeleaf
  • asp.net core实体类怎么生产CRUD后台管理界面
    今天小编给大家分享一下asp.net core实体类怎么生产CRUD后台管理界面的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来...
    99+
    2023-06-30
  • 如何使用MongoDB开发一个简单的网站后台管理系统
    如何使用MongoDB开发一个简单的网站后台管理系统随着互联网的发展,网站的使用和管理变得越来越重要。为了方便网站的管理者对网站内容进行后台管理,开发一个简单而高效的网站后台管理系统是必不可少的。本文将介绍如何使用MongoDB来开发一个简...
    99+
    2023-10-22
    MongoDB 管理系统 网站后台
  • 怎么用Java开发用户后台管理系统
    今天小编给大家分享一下怎么用Java开发用户后台管理系统的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧。主要功能管理员登录功能...
    99+
    2023-06-26
  • linux虚拟主机管理面板怎么使用
    1. 登录管理面板首先,您需要登录到您的Linux虚拟主机管理面板。您可以使用您的用户名和密码登录,或者如果您是管理员,则可以使用管...
    99+
    2023-06-05
    linux虚拟主机 虚拟主机
  • Pbootcms网站后台管理系统登录界面描述/LOGO/背景图/介绍修改教程
    Pbootcms网站后台管理系统登录界面标题/描述/LOGO图/介绍修改教程。如图所示,我们看到的信息都是有关pbootcms的信息,那么我们如何来修改呢? 标题描述修改办法 打开网站根目录/con...
    99+
    2023-09-02
    php 开发语言
  • Bing网站管理员工具怎么用
    这篇文章给大家分享的是有关Bing网站管理员工具怎么用的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。一、验证过程要使用Bing网站管理员工具,首先需要验证你拥有网站管理权限。有两个验证方法,按照Bing要求在网站...
    99+
    2023-06-13
  • win10系统Microsoft管理控制台停止工作怎么办
    这篇文章主要介绍“win10系统Microsoft管理控制台停止工作怎么办”,在日常操作中,相信很多人在win10系统Microsoft管理控制台停止工作怎么办问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”w...
    99+
    2023-06-28
  • 怎么用DreamWeaver模板工具批量制作网页
    这篇文章主要讲解了“怎么用DreamWeaver模板工具批量制作网页”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“怎么用DreamWeaver模板工具批量制作网页”吧!一、建立模板创建模板页...
    99+
    2023-06-08
  • YouDianCMS建站系统|后台管理员账号被锁定了怎么办?
    这里经常会有用户无意间操作点击把后台超级管理员给锁定了,导致无法进入后台,这种情况应该怎么处理呢? 下面就来给大家介绍下具体的方法: 第一步:找到并打开数据库表 youdian_admin表(表前缀根据具...
    99+
    2024-04-02
  • 怎么使用Ansible管理工作站配置
    这篇文章给大家分享的是有关怎么使用Ansible管理工作站配置的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。配置管理是服务器管理和 DevOps 的一个非常重要的方面。“基础架构即代码infrastructure...
    99+
    2023-06-16
  • 怎么使用php和mysql制作动态网站
    要使用PHP和MySQL制作动态网站,您需要按照以下步骤进行操作:1. 安装PHP和MySQL:您需要在您的计算机上安装PHP和My...
    99+
    2023-08-23
    php mysql
  • 怎么使用Vuex实现Vue后台管理中的角色鉴权
    这篇文章主要介绍“怎么使用Vuex实现Vue后台管理中的角色鉴权”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“怎么使用Vuex实现Vue后台管理中的角色鉴权”文章能帮助大家解决问题。功能分析在常见管...
    99+
    2023-06-30
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作