CSS to achieve floating customer service effect

CSS to achieve floating customer service effect

insert image description here

<div class="sideBar">
    <div>
        <div class="tips">Online Customer Service</div>
        <ul class="list">
            <li>QQ:1846492969</li>
            <li>QQ:1846492969</li>
            <li>QQ:1846492969</li>
            <li>QQ:1846492969</li>
            <li>QQ:1846492969</li>
        </ul>
    </div>
</div>
.sideBar {
 position:fixed;
 right:-182px;
 top:50px;
 background-color:#ffffff;
 border:#eea236 solid 1px;
 transition:right 0.5s;
 border:solid 1px red;
}
.sideBar:hover {
 right:0;
}
.sideBar>div {
 position:relative;
}
.sideBar .tips {
 position:absolute;
 height:120px;
 line-height:25px;
 background-color:#eea236;
 width:40px;
 left:-40px;
 top:50px;
 text-align:center;
 box-sizing:border-box;
 padding:10px 10px;
 border-top-left-radius:5px;
 border-bottom-left-radius:5px;
 font-weight:bold;
 color:#ffffff;
}
.sideBar .list {
 padding:0;
 list-style:none;
 width:180px;
 margin:0;
}
.sideBar .list>li {
 padding:15px;
 border-top:#eea236 dashed 1px;
}
.sideBar .list>li:hover {
 background-color:#f0ad4e;
 color:#ffffff;
}
.sideBar .list>li:first-child {
 border-top:none;
}

Summarize

The above is the CSS method for achieving the floating customer service effect introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

<<:  Have you carefully understood Tags How it is defined How to use

>>:  How to use Font Awesome 5 in Vue development projects

Recommend

A brief discussion on the application of Html web page table structured markup

Before talking about the structural markup of web...

JavaScript regular verification password strength implementation method

exhibit design Password strength analysis The pas...

Vue realizes simple effect of running light

This article shares the specific code of Vue to a...

Master-slave synchronous replication configuration of MySQL database under Linux

The advantage of the master-slave synchronization...

The visual design path of the website should conform to user habits

Cooper talked about the user's visual path, w...

React example of how to get the value of the input box

React multiple ways to get the value of the input...

Steps to install GRUB on Linux server

How to Install GRUB for Linux Server You cannot u...

Javascript Basics: Detailed Explanation of Operators and Flow Control

Table of contents 1. Operator 1.1 Arithmetic oper...

Bug of Chinese input garbled characters in flex program Firefox

Chinese characters cannot be input in lower versio...

Complete example of Vue encapsulating the global toast component

Table of contents Preface 1. With vue-cli 1. Defi...

MySQL paging analysis principle and efficiency improvement

MySQL paging analysis principle and efficiency im...

Network configuration of Host Only+NAT mode under VirtualBox

The network configuration of Host Only+NAT mode u...

Sample code for implementing rolling updates of services using Docker Swarm

1. What is Docker Swarm? Docker Swarm is a cluste...

Share 9 Linux Shell Scripting Tips for Practice and Interviews

Precautions 1) Add interpreter at the beginning: ...