您好,欢迎来到源码搜藏!分享精神,快乐你我!提示:担心找不到本站?在百度搜索“源码搜藏”,网址永远不丢失!
  • 首 页
  • 在线工具
  • 当前位置:首页 > 网页特效 > jQuery特效 >

    jQuery弹出层登录页面表单

    时间:2014-06-27 08:08 来源:互联网 作者:源码搜藏 浏览:收藏 挑错 推荐 打印

    效果预览 进入下载地址列表

    jQuery弹出层登录页面表单jQuery弹出层登录页面表单是一款基于jquery实现的简单弹出层登录页面表单效果代码。jQuery弹出层登录框表单


    <script type="text/javascript">
    $(function ($) {
    //弹出登录
    $("#example").hover(function () {
    $(this).stop().animate({
    opacity: '1'
    }, 600);
    }, function () {
    $(this).stop().animate({
    opacity: '0.6'
    }, 1000);
    }).on('click', function () {
    $("body").append("<div id='mask'></div>");
    $("#mask").addClass("mask").fadeIn("slow");
    $("#LoginBox").fadeIn("slow");
    });
    //
    //按钮的透明度
    $("#loginbtn").hover(function () {
    $(this).stop().animate({
    opacity: '1'
    }, 600);
    }, function () {
    $(this).stop().animate({
    opacity: '0.8'
    }, 1000);
    });
    //文本框不允许为空---按钮触发
    $("#loginbtn").on('click', function () {
    var txtName = $("#txtName").val();
    var txtPwd = $("#txtPwd").val();
    if (txtName == "" || txtName == undefined || txtName == null) {
    if (txtPwd == "" || txtPwd == undefined || txtPwd == null) {
    $(".warning").css({ display: 'block' });
    }
    else {
    $("#warn").css({ display: 'block' });
    $("#warn2").css({ display: 'none' });
    }
    }
    else {
    if (txtPwd == "" || txtPwd == undefined || txtPwd == null) {
    $("#warn").css({ display: 'none' });
    $(".warn2").css({ display: 'block' });
    }
    else {
    $(".warning").css({ display: 'none' });
    }
    }
    });
    //文本框不允许为空---单个文本触发
    $("#txtName").on('blur', function () {
    var txtName = $("#txtName").val();
    if (txtName == "" || txtName == undefined || txtName == null) {
    $("#warn").css({ display: 'block' });
    }
    else {
    $("#warn").css({ display: 'none' });
    }
    });
    $("#txtName").on('focus', function () {
    $("#warn").css({ display: 'none' });
    });
    //
    $("#txtPwd").on('blur', function () {
    var txtName = $("#txtPwd").val();
    if (txtName == "" || txtName == undefined || txtName == null) {
    $("#warn2").css({ display: 'block' });
    }
    else {
    $("#warn2").css({ display: 'none' });
    }
    });
    $("#txtPwd").on('focus', function () {
    $("#warn2").css({ display: 'none' });
    });
    //关闭
    $(".close_btn").hover(function () { $(this).css({ color: 'black' }) }, function () { $(this).css({ color: '#999' }) }).on('click', function () {
    $("#LoginBox").fadeOut("fast");
    $("#mask").css({ display: 'none' });
    });
    });
    </script>

    jQuery弹出层登录页面表单由源码搜藏网整理,转载请注明出处http://www.codesocang.com/texiao/jQuerytexiao/9721.html 源码搜藏承诺:本站所有资源无病毒,无弹窗,无干扰链接!
    标签:网站源码