最近跟着老师做的农家乐项目已经接近尾声了,项目基本功能已经可以了,需要完善各个页面的提示,网上看到这种仿Android的提示框挺不错的,于是拿来就用上了,哈哈哈!顺便分享下!
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>自定义Toast,类似于android的Toast</title>
<style>
body {
font-family: 'Lucida Grande', 'Helvetica', sans-serif;
}
</style>
<script>
//自定义弹框
function Toast(msg,duration){
duration=isNaN(duration)?3000:duration;
var m = document.createElement('div');
m.innerHTML = msg;
m.style.cssText="width: 60%;min-width: 150px;opacity: 0.7;height: 30px;color: rgb(255, 255, 255);line-height: 30px;text-align: center;border-radius: 5px;position: fixed;top: 40%;left: 20%;z-index: 999999;background: rgb(0, 0, 0);font-size: 12px;";
document.body.appendChild(m);
setTimeout(function() {
var d = 0.5;
m.style.webkitTransition = '-webkit-transform ' + d + 's ease-in, opacity ' + d + 's ease-in';
m.style.opacity = '0';
setTimeout(function() { document.body.removeChild(m) }, d * 1000);
}, duration);
}
</script>
</head>
<body>
<button onclick="Toast('恭喜您注册成功!',2000);">立即注册</button>
</body>
</html>
效果图如下:
转载请注明:路飞博客 » html 自定义提示框,仿Android的Toast功能