欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

jQuery实现的卷帘门滑入滑出效果【案例】

程序员文章站 2023-12-05 23:57:34
本文实例讲述了jquery实现的卷帘门滑入滑出效果。分享给大家供大家参考,具体如下: 效果: 如果用jq来做,其实非常简单,核心代码:

本文实例讲述了jquery实现的卷帘门滑入滑出效果。分享给大家供大家参考,具体如下:

效果:

jQuery实现的卷帘门滑入滑出效果【案例】

如果用jq来做,其实非常简单,核心代码:

<script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
<script>
  //jq入口函数简写方法
/*  $(function ( ) {
  })*/
 //jq入口函数普通方式
$(document).ready(function ( ) {
  $('#flip').on('click',function ( ) {
    $('#content').slidetoggle("slow");//slow是代表200ms的意思,normal是400,fast是600,不写默认normal
  })
})
</script>

完整的代码:

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>www.jb51.net jquery滑入滑出</title>
  <style>
    #flip,#content {
      padding: 5px;
      text-align: center;
      background-color: #e5eecc;
      border: 1px solid #c3c3c3;
    }
    #content {
      padding: 100px;
      display: none;
    }
    #flip {
      cursor: pointer;
    }
  </style>
</head>
<body>
<div id="flip">点我,显示或隐藏面版</div>
<div id="content">hello world!</div>
<script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
<script>
  //jq入口函数简写方法
/*  $(function ( ) {
  })*/
 //jq入口函数普通方式
$(document).ready(function ( ) {
  $('#flip').on('click',function ( ) {
    $('#content').slidetoggle("slow");//slow是代表200ms的意思,normal是400,fast是600,不写默认normal
  })
})
</script>
</body>
</html>

感兴趣的朋友可以使用在线html/css/javascript代码运行工具http://tools.jb51.net/code/htmljsrun测试上述代码运行效果。

更多关于jquery相关内容感兴趣的读者可查看本站专题:《jquery页面元素操作技巧汇总》、《jquery常见事件用法与技巧总结》、《jquery常用插件及用法总结》、《jquery扩展技巧总结》及《jquery选择器用法总结

希望本文所述对大家jquery程序设计有所帮助。