jQuery center element to viewport using center plugin

前端 未结 2 1495
孤独总比滥情好
孤独总比滥情好 2021-01-22 21:04

I am currently using the jQuery center plugin to center my div element and so far it works to an extend where it does center it to the containing parent container. What I want

2条回答
  •  醉梦人生
    2021-01-22 21:35

    Use

    jQuery( "#element_id" ).css( 'top', parseInt( ( jQuery( window ).height() / 2 ) + jQuery( document ).scrollTop() - jQuery( "#element_id" ).height() ) );
    jQuery( "#element_id" ).css( 'left', parseInt( ( jQuery( document ).width() / 2 ) + jQuery( document ).scrollLeft() - jQuery( "#element_id" ).width() ) );
    

提交回复
热议问题