1 Star 0 Fork 1

爱酥网络/bootstrap

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
index.html 2.07 KB
一键复制 编辑 原始数据 按行查看 历史
爱酥网络 提交于 2019-01-04 18:25 . mdui前端框架,Snackbar仿弹框
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
<meta name="renderer" content="webkit">
<meta http-equiv="Cache-Control" content="no-siteapp"/>
<title>Snackbar / Toast示例</title>
<link rel="stylesheet" href="css/mdui.min.css"/>
</head>
<style>
#snackbar {
visibility: hidden;
min-width: 250px;
margin-left: -125px;
background-color: #333;
color: #fff;
text-align: center;
border-radius: 2px;
padding: 16px;
position: fixed;
z-index: 1;
left: 50%;
bottom: 30px;
font-size: 17px;
}
#snackbar.show {
visibility: visible;
-webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
@-webkit-keyframes fadein {
from {
bottom: 0;
opacity: 0;
}
to {
bottom: 30px;
opacity: 1;
}
}
@keyframes fadein {
from {
bottom: 0;
opacity: 0;
}
to {
bottom: 30px;
opacity: 1;
}
}
@-webkit-keyframes fadeout {
from {
bottom: 30px;
opacity: 1;
}
to {
bottom: 0;
opacity: 0;
}
}
@keyframes fadeout {
from {
bottom: 30px;
opacity: 1;
}
to {
bottom: 0;
opacity: 0;
}
}
</style>
<body>
<div class="container">
<h2>Snackbar / Toast</h2>
<p>在屏幕底部弹出消息,作用与使用方法都与Toast类似</p>
<p>点击按钮显示提示信息,3 秒后消失</p>
<button onclick="myFunction()">显示 Snackbar</button>
</div>
<div id="snackbar">一些文本..</div>
</body>
<script>
let myFunction = function() {
let x = document.getElementById("snackbar");
x.className = "show";
setTimeout(function() {
x.className = x.className.replace("show", "");
}, 3000);
};
</script>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/isu5cn/bootstrap.git
git@gitee.com:isu5cn/bootstrap.git
isu5cn
bootstrap
bootstrap
master

搜索帮助