분류
jQuery
jQuery animation fade 예...
본문
<!DOCTYPE html>
<html>
<head>
<script
src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
$(function() {
var winWidth = $(document).width();
var duration = 1000;
$(document).click(function(event) {
$("#alien").animate({
opacity : 0,
}, duration);
});
});
</script>
</head>
<body>
<div id="alien">365ok.co.kr</div>
</body>
</html>
- 이전글jQuery animation disable 예... 15.06.12
- 다음글jQuery animation move 예... 15.06.12