728x90
// :::::::::::::::::::::: 중앙 정렬 :::
jQuery.fn.middle = function () {
this.css("position","absolute");
this.css("top", '50%');
this.css("left", '50%');
this.css("margin-top",- ($(this).outerHeight()) / 2) + "px";
this.css("margin-left",- ($(this).outerWidth()) / 2) + "px";
return this;
}
구현해야 할 곳에 호출 하기만 하면 된다.
// :::::::::::::::::::::: 모바일 레이어팝업 구현 :::
function mobilePopup() {
$('.js-dim').show();
$('.mobile-popup').middle();
// $('body,html').css({
// overflowY: 'hidden'
// });
// $('body').bind('touchmove', function(e){
// e.preventDefault();
// });
$('.mobile-popup-con').css({
overflowY: 'scroll',
//height: '330px'
});
}
'DEVELOP' 카테고리의 다른 글
[CSS] list 고르게 정렬하기 (0) | 2018.08.31 |
---|---|
[javascript & jQuery] 스크롤 문제 해결하기 iScroll.js (0) | 2018.08.17 |
[mobile] 레이어팝업 구현시 이벤트 캡처 현상 제거하기 (0) | 2018.08.06 |
[javascript & jQuery] 팝업 쿠키 보이기 (0) | 2018.07.18 |
[javascript & jQuery] nput 박스 숫자 입력시 자동 포커스 이동 (2) | 2018.07.13 |