jquery ui.sortable with tooltips

时间:2010-05-05 16:46:39

标签: jquery tooltip mouseover jquery-ui-sortable

在页面上,我有一个带有缩略图的可排序列表。 滚动图像时,我想要一个工具提示来显示更大的图像。 我找到qTip,但也许有更好/更容易的东西?

如何将imgPath var从sortable连接到qtip?

var imgPath = '<img src="002171/imm/001.jpg" />';

$("#sortable").sortable();
$("#sortable").disableSelection();

$('#sortable li img').qtip({
    content: {
        text: imgPath
    }
});


<div id="demo">
    <ul id="sortable">
        <li><img src="002171/tn/001.jpg" /></li>
        <li><img src="002171/tn/002.jpg" /></li>
        <li><img src="002171/tn/003.jpg" /></li>
    </ul> 
</div>

1 个答案:

答案 0 :(得分:0)

我为您发布了demo。尽管我喜欢qTip,但要弄清楚如何将其设置为从当前HTML中获取内容并不容易。我花了20分钟搞砸它,直到我放弃。但是,好消息是我知道这个tooltip script有三个版本,其中一个专门用于图像预览。

因此,您需要重新格式化HTML。 href中的<a>包含显示在工具提示中的大图片,而<img src>包含缩略图。您还可以在工具提示中添加标题,方法是在链接的title属性中添加text / HTML(请参阅下面代码中的第一张图片)。

HTML

<div id="demo">
    <ul id="sortable">
        <li><a class="preview" href="01.gif" title="This image has a caption"><img src="01.gif" /></a></li>
        <li><a class="preview" href="02.gif"><img src="02.gif" /></a></li>
        <li><a class="preview" href="03.gif"><img src="03.gif" /></a></li>
        <li><a class="preview" href="04.gif"><img src="04.gif" /></a></li>
        <li><a class="preview" href="05.gif"><img src="05.gif" /></a></li>
        <li><a class="preview" href="06.gif"><img src="06.gif" /></a></li>
        <li><a class="preview" href="07.gif"><img src="07.gif" /></a></li>
        <li><a class="preview" href="08.gif"><img src="08.gif" /></a></li>
        <li><a class="preview" href="09.gif"><img src="09.gif" /></a></li>
        <li><a class="preview" href="10.gif"><img src="10.gif" /></a></li>
    </ul> 
</div>

CSS

.preview { cursor:pointer; }
#preview {
    color: #ddd;
    background: #222;
    border: 1px solid #333;
    padding: 5px;
    display: none;
    opacity: 0.9;
    filter: alpha(opacity=90);
    text-align: center;
}

脚本

$(document).ready(function(){
    $("#sortable").sortable();
    $("#sortable").disableSelection();
});

// You should load the image preview script below separately
// but I've included it here for completeness

/*
* Image preview script
* powered by jQuery (http://www.jquery.com)
*
* written by Alen Grakalic (http://cssglobe.com)
*
* for more info visit http://cssglobe.com/post/1695/easiest-tooltip-and-image-preview-using-jquery
*
*/

this.imagePreview = function(){    
    /* CONFIG */
    xOffset = 10;
    yOffset = 30;
    // these 2 variable determine popup's distance from the cursor
    // you might want to adjust to get the right result
    /* END CONFIG */
    $("a.preview").hover(function(e){
        this.t = this.title;
        this.title = "";    
        var c = (this.t != "") ? "<br/>" + this.t : "";
        $("body").append("<p id='preview'><img src='"+ this.href +"' alt='Image preview' />"+ c +"</p>");                                 
        $("#preview")
            .css("top",(e.pageY - xOffset) + "px")
            .css("left",(e.pageX + yOffset) + "px")
            .fadeIn("fast");                        
    }, function(){
        this.title = this.t;    
        $("#preview").remove();
    });    
    $("a.preview").mousemove(function(e){
        $("#preview")
            .css("top",(e.pageY - xOffset) + "px")
            .css("left",(e.pageX + yOffset) + "px");
    });            
};

// starting the script on page load
$(document).ready(function(){
    imagePreview();
});