为什么当我使用jquery的slideDown和Up函数时,元素不能填充,否则会出错
下面是我的带有填充的代码
'#'expand{ 内边距:16px;显示:无;背景颜色:#fff; }
时,看起来填充是用幻灯片动画的,
而不是我需要放置一个子 div 元素并将填充放入子元素中,我可以问一下吗
Below is my code with padding
'#'expand{ padding: 16px; display: none; background-color: #fff; }
when i put slidetoggle to this element, it seems like the padding animated with the slide
Instead i need a put an child div element and put padding in the child element, Can I ask
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不太确定这就是您想要的,但我假设您想将子
div
滑入带有填充的父div
中。你可以这样做:HTML:
CSS:(
颜色是为了强调填充元素)
JavaScript:
示例如下: http://jsfiddle.net/andrewwhitaker/hqVdQ/
希望有帮助!
I'm not exactly sure this is what you want, but I'm assuming you want to slide a child
div
into a parentdiv
with padding. You could do something like this:HTML:
CSS:
(Colors are there for emphasis of the padded elements)
JavaScript:
Example here: http://jsfiddle.net/andrewwhitaker/hqVdQ/
Hope that helps!