css实现右侧浮动在线客服咨询按钮弹出联系方式效果代码

代码语言:html

所属分类:布局界面

代码描述:css实现右侧浮动在线客服咨询按钮弹出联系方式效果代码

代码标签: 浮动 在线 客服 咨询 按钮 弹出 联系方式 效果

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!doctype html>
<html>
<head>
    <meta charset="utf-8">

    <style>
        /*reset*/
        * {
            margin: 0;
            padding: 0;
            list-style-type: none;
        }
        a,img {
            border: 0;
        }
        a {
            text-decoration: none;
        }
        a:hover {
            text-decoration: underline;
        }
        body {
            font: 12px/180% Arial, Helvetica, sans-serif, "新宋体";
            color: #333333;
        }
        /*main css*/
        .main-im {
            position: fixed;
            right: 10px;
            top: 300px;
            z-index: 100;
            width: 110px;
            height: 272px;
        }
        .main-im .qq-a {
            display: block;
            width: 106px;
            height: 116px;
            font-size: 14px;
            color: #0484cd;
            text-align: center;
            position: relative;
        }
        .main-im .qq-a span {
            bottom: 5px;
            position: absolute;
            width: 90px;
            left: 10px;
        }
        .main-im .qq-hover-c {
            width: 70px;
            height: 70px;
            border-radius: 35px;
            position: absolute;
            left: 18px;
            top: 10px;
            overflow: hidden;
            z-index: 9;
        }
        .main-im .qq-container {
            z-index: 99;
            position: absolute;
            width: 109px;
            height: 118px;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
            border-bottom: 1px solid #ddd.........完整代码请登录后点击上方下载按钮下载查看

网友评论0