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 : 1, 2  Next

Xem chủ đề cũ hơn Xem chủ đề mới hơn Go down  Thông điệp [Trang 1 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)

  • Tin VIP
    Tin VIP

    Bài gửi 10/11/2012, 7:20 pm Tin VIP

    xem

    Trả lời nhanh
  • HenRyqUé
    HenRyqUé

    Bài gửi 10/11/2012, 9:54 pm HenRyqUé

    :D

    Trả lời nhanh
  • Mr.Baut1102
    Mr.Baut1102

    Bài gửi 10/11/2012, 10:47 pm Mr.Baut1102

    Demo?

    Trả lời nhanh
  • Zin_Ken
    Zin_Ken

    Bài gửi 10/11/2012, 11:24 pm Zin_Ken

    d

    Trả lời nhanh
  • tanbinnguyen
    tanbinnguyen

    Bài gửi 11/11/2012, 12:22 am tanbinnguyen

    xem

    Trả lời nhanh
  • nh0kl0k
    nh0kl0k

    Bài gửi 17/11/2012, 9:47 am nh0kl0k

    xem

    Trả lời nhanh
  • chubexinh
    chubexinh

    Bài gửi 24/11/2012, 10:36 pm chubexinh

    phe

    Trả lời nhanh
  • bư

    Bài gửi 24/11/2012, 10:47 pm

    lấy từ đâu thế :-ss
    + thêm cái js trên là gộp cả last vào mà còn để thế kia có mà lỗi hết forum à Cười lăn lộn
    lại còn sửa lại link js thành code nữa chứ :))



    Được sửa bởi bư ngày 5/12/2012, 11:29 pm; sửa lần 1.

    Trả lời nhanh
  • thoa911155
    thoa911155

    Bài gửi 3/12/2012, 1:04 am thoa911155

    xem

    Trả lời nhanh
  • baotranno123
    baotranno123

    Bài gửi 3/12/2012, 5:22 pm baotranno123

    Hay lắm

    Trả lời nhanh
  • npsuperman
    npsuperman

    Bài gửi 5/12/2012, 8:15 pm npsuperman

    xem

    Trả lời nhanh
  • Get Over
    Get Over

    Bài gửi 5/12/2012, 8:34 pm Get Over

    hay

    Trả lời nhanh
  • khoainet
    khoainet

    Bài gửi 5/12/2012, 9:17 pm khoainet

    vote

    Trả lời nhanh
  • set_s2
    set_s2

    Bài gửi 8/12/2012, 3:42 pm set_s2

    xem Hôn

    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 1 trong tổng số 2 trang]

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

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