티스토리 뷰
/**
* Browser :: IE9+, Chrome, Safari, Firefox, Opera
* Desc :: Toast
**/
HTML
<div class='error' style='display:none'>Error</div>
CSS
.error {
width: 250px;
height: 20px;
height:auto;
position: fixed;
left: 50%;
margin-left:-125px;
bottom: 100px;
z-index: 9999;
background-color: #383838;
color: #F0F0F0;
font-family: Calibri;
font-size: 15px;
padding: 10px;
text-align:center;
border-radius: 2px;
-webkit-box-shadow: 0px 0px 24px -1px rgba(56, 56, 56, 1);
-moz-box-shadow: 0px 0px 24px -1px rgba(56, 56, 56, 1);
box-shadow: 0px 0px 24px -1px rgba(56, 56, 56, 1);
}
Jquery
$('.error').fadeIn(400).delay(1000).fadeOut(400); //fade out after 3 seconds
Result
/**
* 궁금한 점은 댓글로 남겨주세요.
* Please fell free to ask me any questions.
**/
'Web > Js::jQuery' 카테고리의 다른 글
programmers - 추석트래픽 (0) | 2022.11.04 |
---|---|
[Js/jQuery] 이메일 셀렉트박스 선택 시 input disabled (1) | 2017.09.11 |
[Js/jQuery] addClass(), removeClass(), hasClass() (0) | 2017.08.29 |
[Js/jQuery] Get selected radio value (0) | 2016.12.08 |
[Js/jQuery] 'NaN' : Not a Number 구분하기 (0) | 2016.11.27 |
댓글