SoFunction
Updated on 2025-03-04

Analysis of the usage of slideUp method in jQuery


<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="https:///" />
<head>
<style type="text/css">
div{
  background:#060;
  width:300px;
  height:300px;
  color:red;
}
</style>
<title>I</title>
<script type="text/javascript" src="mytest/jQuery/jquery-1.8."></script>
<script type="text/javascript">
$(document).ready(function(){
  $("#up").click(function(){
$("div").slideUp(5000,function(){alert('Swipe down to complete!')});
  })
})
</script>
</head>
<body>
<div></div>
<button>Click to swipe up</button>
</body>
</html>