Показать сообщение отдельно
  #2 (permalink)  
Старый 10.01.2014, 20:31
Интересующийся
Отправить личное сообщение для bayanruby Посмотреть профиль Найти все сообщения от bayanruby
 
Регистрация: 26.05.2012
Сообщений: 16

держи, если тебе уже не нужно, то остальным оставляю!
сам мучался часов 3, но в буржунете всётаки нашёл код

this.screenshotPreview = function(){
    /* CONFIG */

    xOffset = 0;
    yOffset = 0;

    // these 2 variable determine popup's distance from the cursor
    // you might want to adjust to get the right result

    /* END CONFIG */
    $("a.screenshot").hover(function(e){
            this.t = this.title;
            this.title = "";
            var c = (this.t != "") ? "<br/>" + this.t : "";
            $("body").append("<p id='screenshot'><img src='"+ this.rel +"' alt='url preview' />"+ c +"</p>");

            var posY;

            if (e.pageY - $(window).scrollTop() + $('#screenshot').height() >= $(window).height() ) {
                posY = $(window).height() + $(window).scrollTop() - $('#screenshot').height() - 15;
            } else {
                posY = e.pageY - 15;
            }

            $("#screenshot")
                .css("top",(posY) + "px")
                .css("left",(e.pageX - $('#screenshot').width() - 15) + "px")
                .fadeIn("fast");
        },
        function(){
            this.title = this.t;
            $("#screenshot").remove();
    });

    $("a.screenshot").mousemove(function(e){
        var posY;

        if (e.pageY - $(window).scrollTop() + $('#screenshot').height() >= $(window).height() ) {
            posY = $(window).height() + $(window).scrollTop() - $('#screenshot').height() - 15;
        } else {
            posY = e.pageY - 15;
        }

        $("#screenshot")
            .css("top",(posY) + "px")
            .css("left",(e.pageX - $('#screenshot').width() - 15) + "px");
    });
};

// starting the script on page load
$(document).ready(function(){
    screenshotPreview();
});
Ответить с цитированием