JQUERY MOBILE CĂN BẢN
CÁC CHỦ ĐỀ
BÀI MỚI NHẤT
MỚI CẬP NHẬT

Bài 07: jQuery Mobile - Data Position To

Trong bài này chúng ta sẽ tìm hiểu thuộc tính data-position-to trong jQuery Mobile, đây là một thuộc tính giúp xác định nơi hiển thị của Popup hoặc dialog.

test php

banquyen png
Bài viết này được đăng tại freetuts.net, không được copy dưới mọi hình thức.

1. Data-position-to trong jQuery Mobile

Thuộc tính data-position-to giúp xac popup sẽ hiển thị tại vị trí nào. Nó có ba giá trị như sau:

  • window: hiển thị ngay giữa màn hình
  • origin: hiển thị ngay tại button mà ta click
  • #selector: ID của thẻ HTML nào đó

Ví dụ: XEM DEMO

<div data-role="page">
    <div data-role="header" id="position-header">
        <h2>Position To</h2>
    </div>
    <div role="main" class="ui-content">
        <a href="#positionWindow" class="ui-btn ui-btn-inline" data-rel="popup" data-position-to="window">Position to window</a> <br/>
        <a href="#positionOrigin" class="ui-btn ui-btn-inline" data-rel="popup" data-position-to="origin">Position to origin</a> <br/>
        <a href="#positionSelector" class="ui-btn ui-btn-inline" data-rel="popup" data-position-to="#position-header">Position to #position-header</a>
        <div data-role="popup" id="positionWindow" class="ui-content" data-theme="a">
            <p>I am positioned to the window.</p>
        </div>
        <div data-role="popup" id="positionOrigin" class="ui-content" data-theme="a">
            <p>I am positioned over the origin.</p>
        </div>
        <div data-role="popup" id="positionSelector" class="ui-content" data-theme="a">
            <p>I am positioned over the header for this section via a selector. If the header isn't scrolled into view, collision detection will place the popup so it's in view.</p>
        </div>
    </div>
</div>

2. Lời kết

Đáng lẽ trong bài tìm hiểu Popup mình giới thiệu luôn nhưng vì bài đó dài rồi nên mình tách ra, một phần giúp bạn dễ tìm kiếm và một phần giảm thời lượng học của bài đó.

Bài viết này được đăng tại [free tuts .net]

Bài tiếp theo chúng ta sẽ tìm hiểu về Toolbar.

Cùng chuyên mục:

Bài 12: jQuery Mobile - Tables

Bài 12: jQuery Mobile - Tables

Đối với Table rất khó có thể xây dựng responsive bởi vì nó không hiển…

Bài 11: jQuery Mobile - Collapsibles

Bài 11: jQuery Mobile - Collapsibles

Collapsible là hiệu ứng khi bạn click vào dấu cộng thì nó sẽ mở rộng…

Bài 10: jQuery Mobile - Panel

Bài 10: jQuery Mobile - Panel

jQuery Mobile Panel là thành phần trượt ra từ bên phải hoặc bên trái khi…

Bài 09: jQuery Mobile - Navigation Bars

Bài 09: jQuery Mobile - Navigation Bars

Navigations Bar là phần nằm phía dưới header dùng để hiển thị các button kèm…

Bài 08: jQuery Mobile - Toolbar Header và Footer

Bài 08: jQuery Mobile - Toolbar Header và Footer

Toolbar là thanh công cụ hiển thị ở đầu trang (header) và cuối trang (footer).…

Bài 06: jQuery Mobile - Popup - Tooltip - Lightbox

Bài 06: jQuery Mobile - Popup - Tooltip - Lightbox

Popup là một thành phần không thể thiếu trong các ứng dụng Mobile được, vì…

Bài 05: jQuery Mobile - Icons

Bài 05: jQuery Mobile - Icons

jQuery Mobile hỗ trợ một nhóm các icon sử dụng cho buttons, collapsibles, listview buttons…

Bài 04: jQuery Mobile - Buttons

Bài 04: jQuery Mobile - Buttons

jQuery Mobile hỗ trợ một số style button căn bản để tạo giao diện website,…

Bài 03: jQuery Mobile - Transitions

Bài 03: jQuery Mobile - Transitions

jQuery Mobile Framework cho phép bạn chuyển trang với nhiều hiệu ứng khác nhau dựa…

Bài 02: jQuery Mobile - Tìm hiểu Page

Bài 02: jQuery Mobile - Tìm hiểu Page

Page là một thành phần chính dùng để gom nhóm các nội dung liên quan…

Bài 01: jQuery Mobile là gì?

Bài 01: jQuery Mobile là gì?

jQuery Mobile là một Framework được phát triển tương tự như thư viện jQuery nhưng…

Top