jQuery显示隐藏层插件实例登录框的演示

<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en"
    "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
   <title>jquery显示隐藏层插件实例登录框的演示</title>
 <meta http-equiv="content-type" content="text/html; charset=gb2312" />
   <link rel="stylesheet" href="style.css教程" type="text/css" media="screen" />
   <link rel="stylesheet" href="fx.slide.css" type="text/css" media="screen" />
 <script src="/jquery-1.2.6.pack.js" type="text/网页特效"></script>
 <script language="javascript" >
  $(function(){
     $("#togglelogin").toggle(function(){
          $("#login").parent("div").animate({ height : 105 } , 520 );
    $("#login").animate({margintop : 0 } , 500 );
    $(this).blur();
     },function(){
       $("#login").parent("div").animate({ height : 0 } , 500 );
    $("#login").animate({margintop : -105 } , 520 );
    $(this).blur();
     });
     $("#closelogin").click(function(){
          $("#login").parent("div").animate({ height : 0 } , 500 );
    $("#login").animate({margintop : -105 } , 520 );
     });
  })
 </script>

</head>

<body>
 <!-- login -->
 <div style="margin: 0px; overflow: hidden; position: relative; height: 0px;">
  <div id="login" style="margin: -105px 0px 0px; height: auto;">
   <div class="logincontent">
    <form action="#" method="post">
     <label for="log"><b>username: </b></label>
     <input class="field" type="text" name="log" id="log" value="" size="23" />
     <label for="pwd"><b>password:</b></label>
     <input class="field" type="password" name="pwd" id="pwd" size="23" />
     <input type="submit" name="submit" value="" class="button_login" />
     <input type="hidden" name="redirect_to" value=""/>
    </form>
    <div class="left">
     <label for="rememberme"><input name="rememberme" id="rememberme" class="rememberme" type="checkbox" checked="checked" value="forever" /> remember me</label></div>
    <div class="right">not a member? <a href="#">register</a> | <a href="#">lost your password?</a></div>
   </div>
   <div class="loginclose"><a href="#" id="closelogin">close panel</a></div>
  </div>
 </div>
 <!-- /login -->

    <div id="container">
  <div id="top">
  <!-- login -->
   <ul class="login">
       <li class="left">&nbsp;</li>
          <li>hello guest!</li>
    <li>|</li>
    <li><a id="togglelogin" href="#">log in</a></li>
   </ul> <!-- / login -->
  </div> <!-- / top -->

        <div class="clearfix"></div>  

</body>
</html>

源码下载地址
http://down.111cn.net/down/code/jquery/2010/0908/20689.html

时间: 2024-09-12 15:44:43

jQuery显示隐藏层插件实例登录框的演示的相关文章

jQuery显示隐藏密码插件jquery.toggle-password演示

<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="utf-8"> <title>jQuery显示隐藏密码插件jquery.toggle-password演示_dowebok</title> <style> * { margin: 0; padding: 0; } body { font: 14px Arial, san

jquery人们问题导航菜单及显示隐藏层

用jquery实现显示隐藏层,和用jquery实现导航样式非常简单的几句代码,免去了用js写一大串的垃圾代码. //下面是导航样式的$("a[title='nav']").click(function(){           for(i=0;i<$("a[title='nav']").size();i++)            {                if($(this).attr("id")!=$("a[title

jquery 显示隐藏实例代码

<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="content-

js显示隐藏层实例代码

<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="content-

JQuery+CSS3实现封装弹出登录框效果

原文:JQuery+CSS3实现封装弹出登录框效果 上次发了一篇使用Javascript来实现弹出层的效果,这次刚好用了JQuery来实现,所以顺便记录一下: 因为这次使用了Bootstrap来做一个项目,但是由于不使用Bootstrap自带的JS插件,所以这个弹出登录框就自己实现封装来调用,做出来的效果其实和Bootstrap自带的效果差不多.OK,看一下效果图: 其实很简单,首先是html结构: <div id="mask"></div> <!-- 半

jQuery弹出层插件与使用方法

<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="content-

原创jQuery弹出层插件分享_jquery

依赖jquery,兼容IE6\7\8 火狐 chrom 等主流浏览器(绝对原创), 不过请求大神帮我提升点效率. /** * jQuery弹出层插件 * * @author lanhaoooo@163.com * @since 2014-08-23 */ (function($) { var methods = { o : { isIe : !-[ 1, ] || document.documentMode >= 9,//后面的是判断IE9.IE10的 ie6 : !-[ 1, ] &&am

jQuery弹出层插件Lightbox_me使用指南_jquery

网站开发过程中,为了增加网站交互效果,我们有时需要在当前页面弹出诸如登陆.注册.设置等窗口.而这些窗口就是层,弹出的窗口就是弹出层.jQuery中弹出层插件很多,但有些在html5+css3浏览器下,支持完美.而在例如ie8一下的浏览器下显示不出应有的效果.例如jquery.avgrund插件在ie8下就无法显示. 本文介绍的插件Lightbox_me可以完美的支持chrome,firefox和ie7,ie8,ie9等主流浏览器. 1.Lightbox_me插件功能 用于显示弹出层 2.Ligh

jQuery弹出层插件Lightbox

  在使用discuzx中有一个Message以及Dialog方法来显示信息对话框.今天写项目的时候,需要一个信息对话框,所以就着手利用lightbox_me插件来写一个做备用. 网站开发过程中,为了增加网站交互效果,我们有时需要在当前页面弹出诸如登陆.注册.设置等窗口.而这些窗口就是层,弹出的窗口就是弹出层.jQuery中弹出层插件很多,但有些在html5+css3浏览器下,支持完美.而在例如ie8一下的浏览器下显示不出应有的效果.例如jquery.avgrund插件在ie8下就无法显示. 本