zoukankan      html  css  js  c++  java
  • operamasks—omMessageTip的使用

    <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml">

    <head>    

    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />    

    <title></title>    

    <script src="js/jquery.min.js"></script>    

    <script src="js/operamasks-ui.min.js"></script>    

    <link href="css/apusic/om-apusic.css" rel="stylesheet" />       

    <script type="text/javascript">    

    <!--     //普通提醒,要手动关闭,关闭时无回调    

    function showSimpleTip(){        

    $.omMessageTip.show({            

    title : '操作成功',            

    content : '密码修改成功!'        

    });     }    

    //普通提醒(标题和内容可使用html代码),要手动关闭,关闭时无回调    

    function showHtmlTip(){        

    $.omMessageTip.show({            

    title : '<font color="blue">QQ新闻</font>',            

    content :   '标题是蓝色的看到没有?下面的文字带有链接看到没有?<br/><br/>'                         

    });     }    

    //定时消失提醒,当然也可以手动关闭,关闭时无回调    

    function showTimeoutTip(){        

    $.omMessageTip.show({            

    title : '提示',            

    content : '3秒后自动消失!',            

    timeout : 3000        

    });     }    

    //关闭时有回调的提醒,要手动关闭    

    function showCallbackTip(){        

    $.omMessageTip.show({            

    title : '提醒4',            

    content : '关闭后会执行回调函数!',            

    onClose : function(){                

    showResult('提醒4被关闭!');             }        

    });     }    

    //关闭时有回调的提醒,定时消失提醒,当然也可以手动关闭    

    function showTimeoutCallbackTip(){        

    $.omMessageTip.show({            

    title : '提醒5',            

    content : '3秒后自动关闭(手动关闭也可以),关闭后会执行回调函数!',            

    timeout : 3000,            

    onClose : function(){                

    showResult('提醒5被关闭!');             }        

    });     }     //回调函数(显示信息到页面中)    

    function showResult(msg){        

    $('#result').html(msg).fadeIn('slow').delay(1500).fadeOut('slow');    

    }       </script>    </head> <body>    

    <button onclick="showSimpleTip();">普通的提醒(手动关闭)</button>    

    <button onclick="showHtmlTip();">标题和内容可用html的提醒(手动关闭)</button>    

    <button onclick="showTimeoutTip();">自动关闭的提醒(3秒后自动关闭)</button>    

    <button onclick="showCallbackTip();">关闭时执行回调函数的提醒(手动关闭)</button>    

    <button onclick="showTimeoutCallbackTip();">关闭时执行回调函数的提醒(3秒后自动关闭)</button>

        <br /><br />    

    <div style="color:red;font-size: 2em" id="result"></div>      

    </body>

    </html>

    效果如下:

  • 相关阅读:
    USACO Sabotage
    USACO Telephone Lines
    NOIP 2012 借教室
    洛谷 P1902 刺杀大使
    VIJOS-P1450 包裹快递
    JDOJ 1770 埃及分数
    USACO Monthly Expense
    7.modifier插件的自定义和使用
    6.function自定义插件的方法和使用
    5.Smart使用内置函数或者自定义函数
  • 原文地址:https://www.cnblogs.com/jason-davis/p/4009905.html
Copyright © 2011-2022 走看看