Determine horizontal and vertical changes in mobile apps

Source: Internet
Author: User
In a mobile application, when you determine that the device is perpendicular to the horizontal direction, the page must be adjusted as required.

On Apple machines, such as iPad, iPhone, and itouch, there is a property to judge:

Window. onorientationchange = detectorientation;

Function detectorientation (){

If (typeof window. onorientationchange! = 'Undefined '){

If (orientation = 0 ){

// Do something in portrait Mode

}

Else if (orientation = 90 ){

// Do something in Landscape mode

}

Else if (orientation =-90 ){

// Do something in Landscape mode

}

Else if (orientation = 180 ){

// Do something in Landscape mode

}

}

}

On other types of mobile devices, you may have to worry about it. You can use jquery to determine its length and width. For example:

$ (Document). Ready (function (){

If (window. Orientation! = Undefined)

Window. onorientationchange = updateview;

Else

$ (Window). Resize (updateview );

}

Function updateview (){

// Edit the font, style, and color changes here

}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.