Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

杨树贤 / kefu_server

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Find file
Normal viewHistoryPermalink
Switch branch/tag
  • kefu_server
  • ui
  • kefu_client
  • kefu_plugin
  • pc_bar_ui.html
pc_bar_ui.html 2.13 KB
keith's avatar
into client,admin public
f958b975
 
keith committed 5 years ago
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
<!DOCTYPE html>
<html lang="zh">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Mini IM UI</title>
    <style>

        .mini-im-client-fixed{
            position: fixed;
            bottom: 10px;
            right: 10px;
            min-width: 200px;
            max-width: 360px;
            min-height: 40px;
        }
        .mini-im-client-bar{
            width: 200px;
            height: 40px;
            border-radius: 3px;
            overflow: hidden;
            display: flex;
            cursor: pointer;
        }
        .mini-im-client-bar-icon{
            width: 40px;
            height: 40px;
            background-color: #1779ca;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .mini-im-client-bar-icon img{
            width: 30px;
            height: 30px;
        }
        .mini-im-client-bar-title{
            width: 160px;
            height: 40px;
            background-color:  #1898fc;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #fff;
            font-size: 15px;
            text-align: center;
        }
        .mini-im-client-iframe{
            width: 360px;
            height: 500px;
            box-shadow: 1px 1px 8px 2px rgba(204, 204, 204, 0.61);
            display: none;
        }

    </style>
</head>
<body>



    <!-- PC Bar UI -->
    <div class="mini-im-client-fixed" id="miniImClientFixed">
        <div class="mini-im-client-iframe" id="miniImclientIframeBox">
            <iframe id="miniImclientIframe" height="500" width="360" frameborder="0"></iframe>
        </div>
        <div class="mini-im-client-bar" id="miniImClientBar">
            <div class="mini-im-client-bar-icon">
                <img src="http://qiniu.cmp520.com/kefu_icon_2000.png" alt="">
            </div>
            <div class="mini-im-client-bar-title" id="miniImClientNewMessageTag">
               在线客服
            </div>
        </div>
    </div>


    
</body>
</html>