我有一架手风琴但是我希望在手风琴降下后内容从左边滑入。
到目前为止我的代码然而这使得原始幻灯片跳跃。
我还有fiddle显示原始代码......
$(function () {
$(".expand").on("click", function () {
$(this).next().toggle("slide", {
direction: "left"
});
$expand = $(this).find(">:first-child");
if ($expand.text() == "\u25B6") {
$expand.text("\u25BC");
} else {
$expand.text("\u25B6");
}
});
});
答案 0 :(得分:0)
试试这个小提琴。
$(".expand").on("click", function () {
$('.detail').toggle('slide');
})