html5+css3实现页面底部问卷调查

| 4542次阅读| 作者:小猪仔
摘要:html5+css3实现页面底部问卷调查,支持手机上所有浏览器
html5代码
运行代码
01<!DOCTYPE html>
02<html>
03  <head>
04    <meta name="apple-touch-fullscreen" content="YES" />
05    <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" />
06    <meta name="apple-mobile-web-app-capable" content="yes" />
07    <meta name="format-detection" content="telephone=no" />
08    <style type="text/css">
09        body{margin:0px;padding:0px;}
10         
11        .toasttj_trol{width:300px; padding:0px 10px 0;margin:0 auto;}
12        .toasttj{float:left;color:#fff;position: absolute;background:rgba(0, 0, 0, 0.4);z-index:999;border-radius: 1px;font-size:1em;position: fixed;bottom: 0px;width: 100%;display:block;height: 30px;font-size:20px;opacity:0.7;}
13    </style>
14  </head>
15  <body>
16    <section id="toastId" class="toasttj">
17        <div class="toasttj_trol">
18            <span style="float:left;padding-top:3px;"><a href="http://www.sojump.com/m/3829391.aspx">来吐槽!给推荐结果打分!</a></span>
19            <span style="float:right;width:30px;height:30px;padding-top:3px;padding-left:10px;"><img src="http://image.kuwo.cn/album/sj/individuation/dcx.png" width="13" height="13"/></span>
20        </div>
21    </section>
22    <script type="text/javascript">
23        //web开发技术提供
24        //网址:www.webkfa.com
25        function hidets(){
26            var obj=document.getElementById("toastId");
27            obj.style.display="none";
28        }
29    </script>
30  </body>
31</html>
返回顶部
学到老代码浏览 关闭浏览