码迷,mamicode.com
首页 > 移动开发 > 详细

基于html5手机移动端对话框特效

时间:2015-11-02 18:54:10      阅读:255      评论:0      收藏:0      [点我收藏+]

标签:

html    演示地址:http://www.w2bc.com/demo/201511/2015-11-01-html5-mobile-alter-info/index.html

<center>
        <input type="button" id="success" value="成功" />
        <input type="button" id="error" value="错误" />
        <input type="button" id="load" value="正在加载" />
        <input type="button" id="tip" value="提示" />
    </center>
 
    <script type="text/javascript" src="zepto.min.js"></script>
    <script type="text/javascript" src="mdialog.js"></script>
    <script type="text/javascript">
        //成功
        $("#success").click(function () {
            new TipBox({ type: success, str: 操作成功, hasBtn: true });
        });
        //错误
        $("#error").click(function () {
            new TipBox({ type: error, str: 对不起,出错了!, hasBtn: true });
        });
 
        //提示
        $("#tip").click(function () {
            new TipBox({ type: tip, str: 这是提示信息, clickDomCancel: true, setTime: 10000500, hasBtn: true });
        });
 
        //加载
        $("#load").click(function () {
            new TipBox({
                type: load, str: "努力加载中..", setTime: 1500, callBack: function () {
                    new TipBox({ type: success, str: 操作成功, hasBtn: true });
                }
            });
        });
 
    </script>

技术分享

基于html5手机移动端对话框特效

标签:

原文地址:http://www.cnblogs.com/wzzl/p/4930818.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!