900字范文,内容丰富有趣,生活中的好帮手!
900字范文 > html如何加入浮动客服 css如何实现客服悬浮效果

html如何加入浮动客服 css如何实现客服悬浮效果

时间:2018-10-27 09:59:03

相关推荐

html如何加入浮动客服 css如何实现客服悬浮效果

我们首先来看一下效果图:

(推荐教程:CSS教程)

接着我们来看一下实例代码:

html

在线客服QQ:1846492969QQ:1846492969QQ:1846492969QQ:1846492969QQ:1846492969

css.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;

}

相关视频教程推荐:css视频教程

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。