Floating div adaptive center display js Code

Source: Internet
Author: User

Floating div adaptive center display js Code

This article mainly introduces the floating div adaptive center display js Code. If you need it, please refer to it.

When the div is floating, it cannot be centered when the browser window changes (because left or right values are usually set during Floating)

 

You can use jquery to obtain the width of the peripheral div that changes with the browser (plus the listener event)

 

Then obtain the div width, for example:

 

The Code is as follows:

Function autoWidth (){

 

Var bW = $ (". call_man"). width (); // The peripheral div

Var popWidth = (bW-150)/2 // (150 is the div width)

$ (". Rts" ).css ("left", popWidth); // assign the obtained value to the div, that is, the distance between the div and the left.

 

}

 

AutoWidth ();

Window. onresize = autoWidth; // listens to events

 

 

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.