vue红点消息点开提醒通知效果代码
代码语言:html
所属分类:布局界面
代码描述:vue红点消息点开提醒通知效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link type="text/css" rel="stylesheet" href="//repo.bfw.wiki/bfwrepo/css/font-awesome-4.7.0/css/font-awesome.min.css">
<style>
* {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
*:before, *:after {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
body {
font-family: 'Roboto', sans-serif;
font-weight: 400;
background: #e0dfff;
margin: 0;
height: 100vh;
font-size: 0.875rem;
line-height: 1.5;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
grid-template-columns: repeat(4, 1fr);
grid-gap: 0.625rem;
grid-template-areas: ". main main ." ". main main .";
}
.container {
width: 20rem;
height: 20rem;
grid-area: main;
-ms-flex-item-align: center;
align-self: center;
justify-self: center;
margin:10px auto;
}
h2 {
font-size: 1.6rem;
font-weight: 400;
line-height: 2rem;
color: #1f2022;
}
ul {
list-style-type: none;
padding: 0.5rem 1rem;
margin: 0 0 0.5rem;
}
li {
display: inline-block;
padding: 0.85rem 1rem;
color: #1f2022;
}
h6 {
font-size: 1rem;
font-weight: 500;
line-height: 1.1;
margin: 0.45rem 0;
}
a {
color: #4aaee7;
background: transparent;
outline: 0;
text-decoration: none;
cursor: pointer;
}
.notification {
position: absolute;
}
.tooltip-bell {
position: absolute;
display: block;
left: 9rem;
color: #a5a6a8;
}
.tooltip {
position: absolute;
top: 2.5rem;
line-height: 1.5;
color: #27303d;
width: 20rem;
background: #fff;
border-radius: 5px;
-webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}
.tooltip::before {
content: '';
position: absolute;
top: -0.4rem;
right: 8.3rem;
border-left: 2rem solid transparent;
border-right: 2rem solid transparent;
border-bottom: 1.5rem solid #fff;
}
#circle {
position: absolute;
top: 0;
left: 0.75rem;
width: 0.75rem;
height: 0.75rem;
border-radius: 100%;
background: #f07379;
}
.notification-item {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
display: -ms-grid;
display: grid;
padding: 0.65rem 0;
}
#heading {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
display: -ms-grid;
display: grid;
padding: 0.5rem 1rem;
border-bottom: 0.01rem solid #eee;
}
.notification-link {
position: absolute;
margin: 0.4rem 0;
}
.heading-left, .img-left {
-ms-flex-preferred-size: auto;
flex-basis: auto;
-webkit-box-flex: 0;
-ms-flex-positive: 0;
flex-grow: 0;
-ms-flex-negative: 0;
flex-shrink: 0;
-ms-grid-row: 1;
grid-row: 1;
margin: 0 1rem 0 0;
}
.heading-left, .user-content {
grid-column: span 9;
width: 14rem;
}
.heading-right, .img-left {
grid-column: auto;
}
.heading-right, .user-content {
-ms-flex-preferred-size: auto;
flex-basis: auto;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
-ms-flex-negative: 1;
flex-shrink: 1;
-ms-grid-row: 1;
grid-row: 1;
}
.heading-right {
width: 2.5rem;
}
.img-left {
width: 3rem;
}
.user-photo {
display: inline-block;
vertical-align: middle;
height: 3rem;
width: 3rem;
margin: 0 0.5rem 0 0;
border-radius: 50%;
max-width: 100%;
}
p.user-info {
margin: 0.15rem 0 0;
}
p.time {
margin: 0;
color: #9da4ae;
}
span.name {
font-weight: 500;
}
.fadeStart-enter-active {
.........完整代码请登录后点击上方下载按钮下载查看
网友评论0