zoukankan      html  css  js  c++  java
  • jQuery插件之模仿QQ邮箱的聊天功能的弹出弹出效果

    $.fn.extend({
        SetBigInSmallOut: function(ContextDiv, T, W, H, closeControlID) {
            return this.each(function(i) {
                $(this).bind("click", function(event) {
                    var btnOffset = $(event.target).offset();
                    if ($("#" + ContextDiv).css("display") == "none") {
                        $("#" + ContextDiv).css({ 'top': btnOffset.top, 'left': btnOffset.left, 'width': '0', 'height': '0' }).animate(
                                    {
                                        height: H,
                                        width: W,
                                        left: (document.documentElement.clientWidth - W) / 2,
                                        top: T
                                    }, "slow", function() {
                                        this.style.display = "";
                                        $(this).attr({ "hideTop": btnOffset.top, "hideLeft": btnOffset.left });
     
                                        $("#" + closeControlID).css({ "cursor": "pointer" }).unbind();
                                        $("#" + closeControlID).click(function(event) {
                                            //alert($("#div_").attr("hideLeft"));
                                            $("#" + ContextDiv).animate(
                                        {
                                            height: 0,
                                            width: 0,
                                            left: $("#" + ContextDiv).attr("hideLeft"),
                                            top: $("#" + ContextDiv).attr("hideTop")
                                        }, "slow", function() {
                                            this.style.display = "none";
                                        });
                                        });
                                    }
                            );
     
                    }
                });
            });
        }
    });
     
    //$("input").SetBigInSmallOut("div_", 300, 300, 200, "close"); 主div,距离顶部多少px,主div高度,主div宽度,关闭主div的按钮id
  • 相关阅读:
    Android异步操作总结
    datatable1.9 与datatable1.10以数据差异
    ftk学习记录(形成全屏幕套件)
    linux处置服务Iptables
    Linux课程---9、安装RPM包(RPM的全称是什么)
    Linux课程---8、Linux启动流程
    Linux课程---7、shell技巧(获取帮助命令)
    Linux课程---6、别名管理和网络配置(Linux命令如何记)
    Linux课程---5、常用文件命令和目录命令(创建文件命令)
    英语发音规则---L字母
  • 原文地址:https://www.cnblogs.com/jianjialin/p/1597954.html
Copyright © 2011-2022 走看看