有没有办法使用jquery对比例元素进行居中,而不需要使用元素hide / show / toggle元素。
下面的代码将缩放以将对象居中至150%然后将其恢复为100%(隐藏缩放至150%然后隐藏它)。我只是希望保持达到150%。
(this).show("scale", { percent: 150}, 500);
我尝试了以下内容:
$(this).effect("scale", { percent: 150}, 500);
$(this).effect("scale", { percent: 150,origin:'center'}, 500);
$(this).effect("scale", { percent: 150,origin:'middle'}, 500);
但“起源”段无效。
我不确定为什么显示/隐藏/切换需要连接到比例和居中。