首页javascriptshowjQuery Method - 如何使用show(time)在动画中显示标签...

jQuery Method - 如何使用show(time)在动画中显示标签...

我们想知道如何使用show(time)在动画中显示标签。...

<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
  src='http://code.jquery.com/jquery-1.9.1.js'></script>
<script type="text/javascript"
  src="http://code.jquery.com/ui/1.9.2/jquery-ui.js"></script>
<script type='text/javascript'>
$(window).load(function(){
    var slide = function(){
        $('.slider').show("blind", {direction: "right" }, "slow");
    }
    setTimeout(slide,1000);
});
</script>
</head>
<body>
  <div class="slider"
    style="height: 200px; width: 200px; background-color: red; display: none" />
</body>
</html>