单击其他 div 时使 div 可见/不可见
有人可以帮助我吗,我需要类似 http://web-kreation.com/demos/login_form_mootools_1 .2/,更简单,当我单击一个 div(在本例中为登录)只是为了显示其他 div 时,如果我再次单击以使其不可见。如果我有两个 div(div id=login 和 div id=vis_unvis),如何使用 Mootools 做到这一点?
Can anybody help me, I need something like http://web-kreation.com/demos/login_form_mootools_1.2/, just mush simpler, when I click on one div ( login in this case) just to show other and if I click again to make unvisible. How to do that with Mootools if I have two divs ( div id=login and div id=vis_unvis) ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请参阅以下主题,了解如何通过 javascript 切换元素的可见性:
切换可见性 -显示/隐藏任何内容
Please refer to the following thread to learn more how toggle element’s visibility via the javascript:
Toggle Visibility - Show/Hide Anything
要将示例中的效果复制到最基本的效果,请查看此小提琴:
http://jsfiddle.net/dimitar /9Syj3/
html of:
和 css of:
mootools 资源: Fx. Morph 或元素原型
.morph()
允许您对元素的属性进行动画处理,在本例中修改 marginTop 和不透明度。mootools 还支持 Fx.Slide、Fx.Reveal 等作为 mootools 的一部分-更多官方插件集合。
当然,要隐藏/显示,您可以只是
toggleClass
一个在元素上具有display: none
的 css 类,或者使用 .show() / .hide() 或.fade("in")
/。 fade("out")
通过不透明度隐藏。处理这个问题的方法永无止境。也检查 Fx.Move :)
to replicate the effect in the example to it's most basic, look at this fiddle:
http://jsfiddle.net/dimitar/9Syj3/
with html of:
and css of:
resources for mootools: Fx.Morph or the element prototype
.morph()
allows you to animate properties of an element, in this case modifying marginTop and opacity.mootools also supports Fx.Slide, Fx.Reveal and more as part of the mootools-more official collection of plugins.
of course to hide/show, you could just
toggleClass
a css class which hasdisplay: none
on the element or use .show() / .hide() or.fade("in")
/.fade("out")
to hide via opacity.NO end to ways to handle this. Check Fx.Move too :)