vue-toast-demo-zxy
Version:
a toast plugin for mobile
39 lines (37 loc) • 833 B
HTML
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<style>
.toast-container{
position: absolute;
top:0;
left:0;
right:0;
bottom:0;
z-index: 2000;
display:flex;
justify-content: center;
align-items: center;
}
.toast{
width:180px;
height:60px;
line-height: 60px;
text-align:center;
background-color: rgba(0,0,0,0.6);
border-radius:10px;
color:#fff
}
</style>
<body>
<section class="toast-container">
<div class="toast">
<span>hello , Toast</span>
</div>
</section>
</body>
</html>