Using JavaScript to center a large background map

Source: Internet
Author: User

Get the width of the original
var yuantuwidth = 1920;
Gets the current one element
var dom = Document.queryselector (". Banner");
Functions that are called when the window size changes
Window.onresize = function () {
Get the width of the viewport with the current function
var viewwidth = document.documentElement.clientWidth;
If the viewport width is less than 1000, jump out of this loop
if (Viewwidth < 1000) {
Return
}
Calculate the offset required by the image center
var panduanwidth = (1920-viewwidth)/2;
The size of the style offset for the x axis of the picture
Dom.style.backgroundPositionX =-panduanwidth + "px";
}

Using JavaScript to center a large background map

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.