Hỗ trợ Forumotion
Bạn có muốn phản ứng với tin nhắn này? Vui lòng đăng ký diễn đàn trong một vài cú nhấp chuột hoặc đăng nhập để tiếp tục.

You are not connected. Please login or register

Chuyển đến trang : Previous  1, 2

Xem chủ đề cũ hơn Xem chủ đề mới hơn Go down  Thông điệp [Trang 2 trong tổng số 2 trang]

vovanan
  • Moderators FM

vovanan

Moderators FM


vovanan

vovanan
loading...

cái này lấy trong skin facebook 2012


có thể update lại js cho chắc ăn nhé

chèn vào footer_end:

Code:
<style>    .tipsy {
    padding: 5px;
    font-size: 10px;
    position: absolute;
    z-index: 999;

    }

    .tipsy-inner {
    padding: 5px 8px 4px 8px;
    background-color: black;
    color: white;
    max-width: 200px;
    text-align: center;
    }

    .tipsy-inner {
    border-radius: 3px;
    -moz-border-radius:3px;
    -webkit-border-radius:3px;
    }

    .tipsy-arrow {
    position: absolute;
    background: url('http://onehackoranother.com/projects/jquery/tipsy/stylesheets/../images/tipsy.gif') no-repeat top left;
    width: 9px;
    height: 5px;
    }

    .tipsy-n .tipsy-arrow {
    top: 0;
    left: 50%;
    margin-left: -4px;
    }

    .tipsy-nw .tipsy-arrow {
    top: 0;
    left: 10px;
    }

    .tipsy-ne .tipsy-arrow {
    top: 0;
    right: 10px;
    }

    .tipsy-s .tipsy-arrow {
    bottom: 0;
    left: 50%;
    margin-left: -4px;
    background-position: bottom left;
    }

    .tipsy-sw .tipsy-arrow {
    bottom: 0;
    left: 10px;
    background-position: bottom left;
    }

    .tipsy-se .tipsy-arrow {
    bottom: 0;
    right: 10px;
    background-position: bottom left;
    }

    .tipsy-e .tipsy-arrow {
    top: 50%;
    margin-top: -4px;
    right: 0;
    width: 5px;
    height: 9px;
    background-position: top right;
    }

    .tipsy-w .tipsy-arrow {
    top: 50%;
    margin-top: -4px;
    left: 0;
    width: 5px;
    height: 9px;
      }</style>

js

Code:
$(function (g) {
    var tg = document.getElementById('i_icon_mini_new_message');
    if (!tg) return;
    var Copyrights = '©Copyright by giObanii - toxigeek.com - All Rights Reserved.';
    var mps = $(tg).attr("alt").match(/[0-9]+/);
    $('li a[href^="/privmsg"]').attr('data-counter', '' + mps + '')
});
(function (c) {
    function a(d) {
        if (d.attr("title") || typeof (d.attr("original-title")) != "string") {
            d.attr("original-title", d.attr("title") || "").removeAttr("title")
        }
    }
    function b(e, d) {
        this.$element = c(e);
        this.options = d;
        this.enabled = true;
        a(this.$element)
    }
    b.prototype = {
        show: function () {
            var g = this.getTitle();
            if (g && this.enabled) {
                var f = this.tip();
                f.find(".tipsy-inner")[this.options.html ? "html" : "text"](g);
                f[0].className = "tipsy";
                f.remove().css({
                    top: 0,
                    left: 0,
                    visibility: "hidden",
                    display: "block"
                }).appendTo(document.body);
                var j = c.extend({}, this.$element.offset(), {
                    width: this.$element[0].offsetWidth,
                    height: this.$element[0].offsetHeight
                });
                var d = f[0].offsetWidth,
                    i = f[0].offsetHeight;
                var h = (typeof this.options.gravity == "function") ? this.options.gravity.call(this.$element[0]) : this.options.gravity;
                var e;
                switch (h.charAt(0)) {
                    case "n":
                        e = {
                            top: j.top + j.height + this.options.offset,
                            left: j.left + j.width / 2 - d / 2
                        };
                        break;
                    case "s":
                        e = {
                            top: j.top - i - this.options.offset,
                            left: j.left + j.width / 2 - d / 2
                        };
                        break;
                    case "e":
                        e = {
                            top: j.top + j.height / 2 - i / 2,
                            left: j.left - d - this.options.offset
                        };
                        break;
                    case "w":
                        e = {
                            top: j.top + j.height / 2 - i / 2,
                            left: j.left + j.width + this.options.offset
                        };
                        break
                }
                if (h.length == 2) {
                    if (h.charAt(1) == "w") {
                        e.left = j.left + j.width / 2 - 15
                    }
                    else {
                        e.left = j.left + j.width / 2 - d + 15
                    }
                }
                f.css(e).addClass("tipsy-" + h);
                if (this.options.fade) {
                    f.stop().css({
                        opacity: 0,
                        display: "block",
                        visibility: "visible"
                    }).animate({
                        opacity: this.options.opacity
                    })
                }
                else {
                    f.css({
                        visibility: "visible",
                        opacity: this.options.opacity
                    })
                }
            }
        },
        hide: function () {
            if (this.options.fade) {
                this.tip().stop().fadeOut(function () {
                    c(this).remove()
                })
            }
            else {
                this.tip().remove()
            }
        },
        getTitle: function () {
            var f, d = this.$element,
                e = this.options;
            a(d);
            var f, e = this.options;
            if (typeof e.title == "string") {
                f = d.attr(e.title == "title" ? "original-title" : e.title)
            }
            else {
                if (typeof e.title == "function") {
                    f = e.title.call(d[0])
                }
            }
            f = ("" + f).replace(/(^\s*|\s*$)/, "");
            return f || e.fallback
        },
        tip: function () {
            if (!this.$tip) {
                this.$tip = c('<div class="tipsy"></div>').html('<div class="tipsy-arrow"></div><div class="tipsy-inner"/></div>')
            }
            return this.$tip
        },
        validate: function () {
            if (!this.$element[0].parentNode) {
                this.hide();
                this.$element = null;
                this.options = null
            }
        },
        enable: function () {
            this.enabled = true
        },
        disable: function () {
            this.enabled = false
        },
        toggleEnabled: function () {
            this.enabled = !this.enabled
        }
    };
    c.fn.tipsy = function (h) {
        if (h === true) {
            return this.data("tipsy")
        }
        else {
            if (typeof h == "string") {
                return this.data("tipsy")[h]()
            }
        }
        h = c.extend({}, c.fn.tipsy.defaults, h);

        function g(k) {
            var l = c.data(k, "tipsy");
            if (!l) {
                l = new b(k, c.fn.tipsy.elementOptions(k, h));
                c.data(k, "tipsy", l)
            }
            return l
        }
        function j() {
            var k = g(this);
            k.hoverState = "in";
            if (h.delayIn == 0) {
                k.show()
            }
            else {
                setTimeout(function () {
                    if (k.hoverState == "in") {
                        k.show()
                    }
                }, h.delayIn)
            }
        }
        function f() {
            var k = g(this);
            k.hoverState = "out";
            if (h.delayOut == 0) {
                k.hide()
            }
            else {
                setTimeout(function () {
                    if (k.hoverState == "out") {
                        k.hide()
                    }
                }, h.delayOut)
            }
        }
        if (!h.live) {
            this.each(function () {
                g(this)
            })
        }
        if (h.trigger != "manual") {
            var d = h.live ? "live" : "bind",
                i = h.trigger == "hover" ? "mouseenter" : "focus",
                e = h.trigger == "hover" ? "mouseleave" : "blur";
            this[d](i, j)[d](e, f)
        }
        return this
    };
    c.fn.tipsy.defaults = {
        delayIn: 0,
        delayOut: 0,
        fade: false,
        fallback: "",
        gravity: "n",
        html: false,
        live: false,
        offset: 0,
        opacity: 0.8,
        title: "title",
        trigger: "hover"
    };
    c.fn.tipsy.elementOptions = function (e, d) {
        return c.metadata ? c.extend({}, d, c(e).metadata()) : d
    };
    c.fn.tipsy.autoNS = function () {
        return c(this).offset().top > (c(document).scrollTop() + c(window).height() / 2) ? "s" : "n"
    };
    c.fn.tipsy.autoWE = function () {
        return c(this).offset().left > (c(document).scrollLeft() + c(window).width() / 2) ? "e" : "w"
    }
})(jQuery);
$(document).ready(function () {
    $(function () {
        $("a").tipsy({
            fade: true,
            gravity: "n"
        });
        $("div").tipsy({
            fade: true,
            gravity: "s"
        });
        $("span").tipsy({
            fade: true,
            gravity: "s"
        });
        $("img").tipsy({
            fade: true,
            gravity: "s"
        });
        $("button").tipsy({
            fade: true,
            gravity: "s"
        });
        $("input").tipsy({
            fade: true,
            gravity: "s"
        })
    })
});

Không Coppy Bài Viết Nhé

Trả lời nhanh

Message reputation : 60% (5 votes)

  • Hữu Phước
    Hữu Phước

    Bài gửi 8/12/2012, 6:24 pm Hữu Phước

    xem

    Trả lời nhanh
  • eC's Kois
    eC's Kois

    Bài gửi 8/12/2012, 6:42 pm eC's Kois

    demo?

    Trả lời nhanh
  • Cùi Mía
    Cùi Mía

    Bài gửi 1/2/2013, 11:35 am Cùi Mía

    :1:

    Trả lời nhanh
  • thanh2010
    thanh2010

    Bài gửi 18/2/2013, 8:19 am thanh2010

    xem

    Trả lời nhanh
  • Huy.PC52
    Huy.PC52

    Bài gửi 18/2/2013, 12:38 pm Huy.PC52

    xem

    Trả lời nhanh
  • Sponsored content

    Bài gửi Sponsored content

    Trả lời nhanh

Xem chủ đề cũ hơn Xem chủ đề mới hơn Về Đầu Trang Thông điệp [Trang 2 trong tổng số 2 trang]

Chuyển đến trang : Previous  1, 2

Permissions in this forum:
Bạn không có quyền trả lời bài viết