[이윰] 모달(modal) 슬라이드 다운 슬라이드 업 효과 없애기
페이지 정보
루루아빠
4,018
2016.05.13 23:44:47
짧은주소
-
https://yadolee.com/tip/403 주소복사
본문
그누보드5/eyoom/theme/설치된 테마/css/custom.css 에 아래 소스를 추가한다.
.modal.fade .modal-dialog
{
-moz-transition: none !important;
-o-transition: none !important;
-webkit-transition: none !important;
transition: none !important;
-moz-transform: none !important;
-ms-transform: none !important;
-o-transform: none !important;
-webkit-transform: none !important;
transform: none !important;
}
위 소스는 fade 효과까지도 삭제를 함으로 fade를 사용하고자 한다면 다음 소스로 대체한다.
.modal {
-webkit-transition: all ease-out !important;
-moz-transition: all 0.3s ease-out !important;
-o-transition: all 0.3s ease-out !important;
transition: all 0.3s ease-out !important;
}
.modal.in .modal-dialog {
-webkit-transform: scale(1, 1) !important;
-ms-transform: scale(1, 1) !important;
transform: scale(1, 1) !important;
}
.modal.fade .modal-dialog {
-webkit-transform: translate(0, 0);
-ms-transform: translate(0, 0);
transform: translate(0, 0);
}
추천인
레벨 101
경험치 1,519,440
Progress Bar 14.66%
- 가입일 : 2015-03-04 03:24:54
- 서명 : KNOW YOUR LIMITS
BUT NEVER STOP TRYING TO EXCEED THEM !!
- 자기소개 : 루루의 자랑
루루아빠랍니다~~
최신댓글이 없습니다.


댓글
첫 번째 댓글을 남겨 주세요