制作在线简历(二)——基本信息

简介: 先在顶部来个头像,头像再做几个动画特效,就是鼠标移上去的时候边框转180°,需要注意的是图片不能随着边框也转动

一、头像


1、先在顶部来个头像,头像再做几个动画特效,就是鼠标移上去的时候边框转180°,需要注意的是图片不能随着边框也转动

  所以得把图片和边框放在两个标签中,两个标签都用绝对定位来控制位置,我以前也做过一些动画的记录,可以在《CSS3中的动画效果记录》查看到。


image.pngimage.png


<header>
    <img src="img/avatar.jpg" />
    <a href="javascript:void(0)"></a>
</header>


a标签和img标签的宽度和高度是一样的,这是为了在圆形边框中包住头像,transition就是用来做动画,边框颜色有两种,左边和上边是橙色,右边和下边是棕色的。:first-child是一个选择器。以前对选择器做些过记录,可以在《CSS选择器的一些记录》查看到。


.menu_container section:first-child > header{
    margin: 10px auto;
    width: 200px;
    height: 200px;
    position: relative;
}
.menu_container section:first-child > header a{
    position: absolute;
    z-index: 1;
    display: block;
    border: 10px solid #072256;
    border-left-color:#E07514;
    border-top-color:#E07514;
    border-radius: 50%;
    width: 180px;
    height: 180px;
    -webkit-transition:all .5s ease-in;
            transition:all .5s ease-in;
       -moz-transition:all .5s ease-in;
         -o-transition:all .5s ease-in;
}
.menu_container section:first-child > header a:hover{
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.menu_container section:first-child > header img{
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: block;
    position: absolute;
    top:10px;
    left: 10px;
}

我还做了个响应式的CSS,用来控制a标签、img标签和header标签的宽度高度。


@media screen and (max-width: 680px) {
    .menu_container section:first-child > header{
        width: 100px;
        height: 100px;
    }
    .menu_container section:first-child > header a{
        border-width: 5px;
        width: 90px;
        height: 90px;
    }
    .menu_container section:first-child > header img{
        width: 90px;
        height: 90px;
        top:5px;
        left: 5px;
    }
}


二、表格信息


1、做个列表信息,这里面用到了个选择器。一开始是用table实现的,但是发现用table做响应式的话有点困难,后面就用flex布局了。在媒体查询的时候再变成block布局。


 image.png


.user_info{
    width:100%;
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
    padding-top:10px;
    overflow:hidden;
}
@media screen and (max-width: 680px) {
    .user_info{
        display:block;
        font-size:1.6rem;
    }
}


2、接下来要做一个动画,就是移到懒羊羊这里做个效果。如下图所示:


  image.png


<a href="javascript:void(0)">
        <span class="line line-top"></span>
        <span class="line line-right"></span>
        <span class="line line-bottom"></span>
        <span class="line line-left"></span>
        懒羊羊
</a>

原理就是用span做四根白线,要绝对定位的,a标签设置为相对定位,在加点动画上去就行了,麻烦的地方就是四根白线的位置定位。


.user_info > span > a .line{
    position:absolute; 
    -moz-transition:all .4s ease;
      -o-transition:all .4s ease;
 -webkit-transition:all .4s ease;
         transition:all .4s ease;
}
.user_info > span > a:hover .line{
    background:#fff;
}
.user_info > span > a .line-top{
    width:0px;
   height:1px;
     left:-110%;
      top:-2px;
}
.user_info > span > a:hover .line-top{
    width:100%;
     left:-2px;
     padding-left:3px;
}
.user_info > span > a .line-right{
    width:1px;
    height:0px;
    right:-2px;
    top:-110%;
}
.user_info > span > a:hover .line-right{
    height:100%;
    top:-2px;
}
.user_info > span > a .line-bottom{
    width:1px;
    height:0px;
    left:-2px;
    bottom:-110%;
}
.user_info > span > a:hover .line-bottom{
    height:100%;
    bottom:1px;
}
.user_info > span > a .line-left{
    width:0px;
    height:1px;
    right:-110%;
    bottom:-2px;
}
.user_info > span > a:hover .line-left{
    width:100%;
    right:-2px;
    bottom:1px;
    padding-right:3px;
}



相关文章
|
5月前
|
前端开发 JavaScript
个人风采,一键展示:手把手教你HTML+CSS制作个人介绍卡片!
个人风采,一键展示:手把手教你HTML+CSS制作个人介绍卡片!
|
人工智能 自然语言处理 安全
如何三分钟快速制作自定义ppt
如何三分钟快速制作自定义ppt
158 0
|
8月前
|
安全 测试技术 Python
【教学基地平台更新日记】首页制作完成
【教学基地平台更新日记】首页制作完成
|
小程序 前端开发 Java
【开题报告】基于uniapp的在线考试小程序的设计与实现
【开题报告】基于uniapp的在线考试小程序的设计与实现
191 0
|
云计算 开发者
制作简历模板 | 学习笔记
快速学习 制作简历模板
284 0
制作简历模板 | 学习笔记
电商网站项目:第一章:进度
电商网站项目:第一章:进度
100 0
电商网站项目:第一章:进度
|
移动开发 前端开发 JavaScript
教你制作一份好简历
教你制作一份好简历
教你制作一份好简历
推荐一个简约的在线简历项目
推荐一个简约的在线简历项目
231 0
|
JSON JavaScript 前端开发
我打造了一个简历在线生成应用(三)
我打造了一个简历在线生成应用(三)
|
JSON JavaScript 前端开发
我打造了一个简历在线生成应用(二)
我打造了一个简历在线生成应用(二)