簡單實用的移動端js-mobile layer

來源:互聯網
上載者:User

標籤:

公司觸屏版的開發已經完成,本篇文章跟大家介紹一個簡單實用的移動端js以實現遮罩效果,mobile layer。這個移動端js實現的效果簡潔,體積較小非常適合移動端開發,並且可以自訂提示的樣式。下面介紹幾個簡單demo

1.普通訊息框,並設定2秒自動關閉,代碼如下:

layer.open({    content: '通過style設定你想要的樣式',    style: 'background-color:#09C1FF; color:#fff; border:none;',    time: 2});

2. 提示框,並自訂標題風格,代碼如下:

layer.open({    title: [        '我是標題',        'background-color:#8DCE16; color:#fff;'    ],    content: '標題風格任你定義。。'    });

3. 提示框,並顯示1個按鈕:
layer.open({    content: '通過style設定你想要的樣式',    btn: ['OK']});

4. 詢問框,並顯示2個按鈕,不允許點遮罩關閉,代碼如下:

layer.open({    content: '你是想確認呢,還是想取消呢?',    btn: ['確認', '取消'],    shadeClose: false,    yes: function(){        layer.open({content: '你點了確認', time: 1});    }, no: function(){        layer.open({content: '你選擇了取消', time: 1});    }});

5. 頁面層,自訂背景等,代碼如下:

layer.open({    type: 1,    content: '空間任意發揮,這裡可傳入html',    style: 'width:240px; height:180px; padding:10px; background-color:#F05133; color:#fff; border:none;'});


使用簡單只需引入layer.m.js檔案和layer.css檔案即可。

著作權聲明:本文為博主原創文章,未經博主允許不得轉載。

簡單實用的移動端js-mobile layer

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.