Web/jQuery Mobile
Jquery Mobile 안드로이드 스타일 toast 팝업
bboks.net
2015. 5. 29. 10:22
var toast=function(msg){
$("")
.css({ display: "block",
opacity: 1,
position: "fixed",
padding: "7px",
"background-color" : "#ffffff",
"text-align": "center",
width: "270px",
left: ($(window).width() - 284)/2,
top: $(window).height()/2 })
.appendTo( $.mobile.pageContainer).delay( 1500 )
.fadeOut( 1000, function(){
$(this).remove();
});
}