CSS实现悬浮按钮

其实就是一个返回上一页或者返回到顶部的按钮

效果图:

方案一:css实现    主要是利用css画三角实现

html代码

    

 css代码

.el-backtop:hover {
    background-color: rgb(240, 240, 240);
}
.el-backtop {
    position: fixed;
    background-color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    // color: #409eff;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 0 6px rgba(0,0,0,.12);
    cursor: pointer;
    z-index: 5;
}
.btn {
    width: 0;
    height: 0;
    position: fixed;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 7px solid #999;
}

 方案二:   主要借助element-ui组件库

html代码:

    

css代码:

.el-backtop:hover {
    background-color: rgb(240, 240, 240);
}
.el-backtop {
    position: fixed;
    background-color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    // color: #409eff;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 0 6px rgba(0,0,0,.12);
    cursor: pointer;
    z-index: 5;
}

最后需要了解画三角的小可爱们可以看这个链接:

https://www.cnblogs.com/chengxs/p/11406278.html

你可能感兴趣的:(css,手机端,PC端,html5)