jQuery的幻灯片可见性隐藏?
作者:互联网
我想实现以下目标:
$("#left").hide('slide', {direction: 'right'}, 1000)
但是我不希望div被隐藏,我希望它保持空间,所以我希望隐藏可见性,例如:
$("#left").css('visibility','hidden')
但是仍然达到与上述相同的效果.
解决方法:
这就是我要做的
$parent = $('#left').parent(); //store the parent of the element in a variable
$('#left').clone() //clone the existing element
.appendTo($parent) // insert it into the current position
.css('visibility','hidden') //set it's visibility to hidden
.end().end() //target the initial element
.slideUp() //do any slide/hide/animation that you want here, the clone will always be there, just invisible
这可能很可怕,但这是我想到解决问题的唯一方法:)
标签:jquery-ui,css,jquery-plugins,javascript,jquery 来源: https://codeday.me/bug/20191201/2084125.html