用多了市面上的各种ui框架,各种的消息弹窗类型。我选择其中的一种,我觉得比较好看的,去模仿实现了。
先上源码,再解释:
目录结构:
1 jQueryToast.css
.ftoast{
position: fixed;
top: 0;
width: 351px;
left: calc(50% - 175px);
z-index: 10000;
}
.ftoast-div{
position: relative;
width: 350px;
min-height: 30px;
border-radius: 5px;
background-color: white;
padding: 10px 5px 0px;
margin-top: 10px;
}
.ftoast-content{
margin-bottom: 10px;
}
.ftoast-expire{
height: 2px;
background-color: red;
position: absolute;
width: 100%;
left: 0;
bottom: 0;
}
.ftoast-success{
border: 1px soli