首页 > HTML5/CSS3

html5+css3实现手机toast提示

发表于2015-07-28 17:50:29| 8013次阅读| 来源webkfa| 作者html5,css3

摘要:html5+css3实现手机toast提示
html5代码
运行代码
01<!DOCTYPE html>
02<html>
03    <head>
04        <meta charset="utf-8">
05        <meta name="apple-touch-fullscreen" content="YES" />
06        <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" />
07        <meta name="apple-mobile-web-app-capable" content="yes" />
08        <meta name="format-detection" content="telephone=no" />
09        <meta name="author" content="webkfa.com"/>
10        <title>html5+css3实现手机toast提示-webkfa.com</title>
11        <style>
12            *{
13            margin:0;padding:0;
14            -webkit-touch-callout: none; /* prevent callout to copy image, etc when tap to hold */
15            -webkit-text-size-adjust: none; /* prevent webkit from resizing text to fit */
16            -webkit-tap-highlight-color: rgba(210,210,210,0.35); /* make transparent link selection, adjust last value opacity 0 to 1.0 */
17            -webkit-user-select: none; /* prevent copy paste, to allow, change 'none' to 'text' */
18            }
19            body{font-family:"微软雅黑";font-size:12px;}
20            ul,li{list-style:none;}
21             
22            .toasttj2{z-index:1003;font-size: 1.37em;position: fixed;bottom:25%;width: 100%;opacity:0;height: 24px;display: none;
23            transition: opacity 1s ease-out;
24            }
25            .huati_btn{width:175px;height:32px;background:#34a0f0;border-radius:3px;font:14px/32px "微软雅黑";display:block;overflow:hidden;margin:0 auto;text-align:center;color:#fff;text-decoration:none;}
26            .huati{height:40px;padding-top:9px;border-bottom:1px dashed #cecece}
27        </style>
28    </head>
29 
30    <body>
31        <p class="huati"><a href="javascript:test(1);" class="huati_btn">测试一下</a></p>
32        <p class="huati"><a href="javascript:test(2);" class="huati_btn">测试二下</a></p>
33        <div id="toastId2" class="toasttj2" style="display: none; opacity: 0;"></div>
34        <script type="text/javascript">
35            function $S(s){return document.getElementById(s);}
36            function $html(s,html){$S(s).innerHTML=html;}
37            var toastTime2=null;
38            var displayTime2=null;
39            function setToast3(html){
40                if(toastTime2!=null){
41                    clearTimeout(toastTime2);
42                    clearTimeout(displayTime2);
43                }
44                $S('toastId2').style.display='block';
45                $S('toastId2').style.opacity=1;
46                $html('toastId2',html);
47                toastTime2=setTimeout(function(){
48                    $S('toastId2').style.opacity=0;
49                    displayTime2=setTimeout(function(){$S('toastId2').style.display='none';},1000);
50                },1000);
51            }
52            function test(f){
53                if(1==f){
54                    setToast3('<div style="color:#fff;background: rgba(0, 0, 0, 0.6);border-radius: 2px;padding: 2px;text-align: center;width:175px;margin: 0 auto;">话题征集内容不能为空</div>');
55                }else if(2==f){
56                    setToast3('<div style="color:#fff;background: rgba(0, 0, 0, 0.6);border-radius: 2px;padding: 2px;text-align: center;width:235px;margin: 0 auto;">话题征集内容最多输入200个字</div>');
57                }
58            }
59        </script>
60    </body>
61 
62</html>

相关文章

猜你喜欢

学到老在线代码浏览器 关闭浏览
友情链接: hao123 360导航 搜狗网址导航 114啦网址导航 博客大全
Copyright © 1999-2014, WEBKFA.COM, All Rights Reserved  京ICP备14034497号-1