gpt4 book ai didi

jQuery UI 可排序,具有最小化和最大化

转载 作者:行者123 更新时间:2023-12-01 03:15:00 25 4
gpt4 key购买 nike

我正在为我当前的项目使用 jQuery UI Sortable,我刚刚从 jQuery 站点找到,我想要Feeds最大化,而其他则最小化。

我的jsFiddle:jsFiddle

有什么想法或建议吗?谢谢。

我的代码:

$(function() {
$(".column").sortable({
connectWith: ".column"
});
$(".portlet").addClass("ui-widget ui-widget-content ui-helper-clearfix ui-corner-all").find(".portlet-header").addClass("ui-widget-header ui-corner-all").prepend("<span class='ui-icon ui-icon-minusthick'></span>").end().find(".portlet-content");
$(".portlet-header .ui-icon").click(function() {
$(this).toggleClass("ui-icon-minusthick").toggleClass("ui-icon-plusthick");
$(this).parents(".portlet:first").find(".portlet-content").toggle();
});
$(".column").disableSelection();
});

最佳答案

给一个ID给div并添加这3行,DEMO http://jsfiddle.net/yeyene/7DM3Q/2/

// to open only feed
$('.portlet-content').css({'display':'none'});
$('#feed .portlet-content').css({'display':'block'});
// to change plus icon of feed
$("#feed .portlet-header span").removeClass("ui-icon-minusthick").addClass("ui-icon-plusthick");

JQUERY

$(function () {
$('.portlet-content').css({'display':'none'});
$('#feed .portlet-content').css({'display':'block'});

$(".column").sortable({
connectWith: ".column"
});
$(".portlet").addClass("ui-widget ui-widget-content ui-helper-clearfix ui-corner-all")
.find(".portlet-header")
.addClass("ui-widget-header ui-corner-all")
.prepend("<span class='ui-icon ui-icon-minusthick'></span>")
.end()
.find(".portlet-content");

$("#feed .portlet-header span").removeClass("ui-icon-minusthick").addClass("ui-icon-plusthick");

$(".portlet-header .ui-icon").click(function () {
$(this).toggleClass("ui-icon-minusthick").toggleClass("ui-icon-plusthick");
$(this).parents(".portlet:first").find(".portlet-content").toggle();
});
$(".column").disableSelection();
});

关于jQuery UI 可排序,具有最小化和最大化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17542876/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com