效果图:
代码:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>DIV悬浮示例-纯CSS实现</title>
<style type="text/css">
img {
width: 120px;
}
/*设置了高度,可以上下滚动*/
body {
height: 1800px;
}
/*div通用样式*/
div {
background: #1ab7a72b;
color: #ffffff;
overflow: hidden;
z-index: 9999;
position: fixed;
padding: 5px;
text-align: center;
width: 120px;
height: 120px;
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
}
/*右上角*/
div.right_top {
right: 10px;
to