web前端入门到实战:鼠标滑过横向时间轴效果

鼠标滑过横向时间轴效果—效果图:

web前端入门到实战:鼠标滑过横向时间轴效果_第1张图片

鼠标滑过横向时间轴效果—全部代码:




    
    



  • 1993

    1993

    内容介绍

  • 1999

    1999

    内容介绍

  • 2006

    2006

    内容介绍

  • 2019

    2019

    内容介绍

编程工作第六个年头了,与大家分享一些学习方法,实战开发需要注意的细节。767-273-102 秋裙。从零基础开始怎么样学好前端。看看前辈们是如何在编程的世界里傲然前行!不停更新最新的教程和学习方法(web前端系统学习路线,详细的前端项目实战教学视频),有想学习web前端的,或是转行,或是大学生,还有工作中想提升自己能力的,正在学习的小伙伴欢迎加入。我们会一起结伴同行前端前端前端

jQuery鼠标滑过横向时间轴效果—css部分:

*{margin:0;padding:0;}
ul{
    list-style: none;
}
.container{
    height: 162px;
    background: url('../images/ico9.gif') repeat-x center;
}
.container li{
    float:left;
    background: url('../images/ico10.gif') no-repeat center top;
    width:140px;
    text-align: center;
    margin-top: 65px;
    position: relative;
    padding-top:30px;
    font-size:12px;
}
.time{
    position: absolute;
    width:100%;
    left:0;
    top:-20px;
    display: none;
}
.time h1{
    background: url('../images/ico11.gif') no-repeat center top;
    height: 67px;
    line-height: 67px;
    font-size:16px;
}
.time p{
    color:#999;
    font-size:14px;
}

你可能感兴趣的:(web前端入门到实战:鼠标滑过横向时间轴效果)