html 中的最小化侧面板
我正在寻找一个简单的 javascript 来创建侧面板,并在执行某些操作后隐藏(例如,单击某些区域后)。类似这个示例但是正如示例所示,从左侧出现而不是从上到下出现。 如果有任何帮助,我们将不胜感激:)
I'm looking for a simple javascript to create side panel with hiding after some action(ex. after clicking on some area). Something like this example but appearing from left side not from up to down as the example works.
Will be appreciated for any help :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你有两个选择。您可以使用 JQuery 或 scriptaculous 来执行此操作。互联网上有很多示例和教程,或者您可以简单地使用 java 脚本来实现。
首先下载 émile 这是一个非常简单的javascript动画框架。
由于您没有提供任何 HTML 标记,我假设您有类似的内容。
假设您的侧面板元素的 CSS 样式为
width:200px
。好的,现在在某处放置一个按钮并为其分配一个单击事件。比如onclick="togglePanel()"
下面是togglePanel函数的内容:
如果你查看emile框架的文档,你可以做很多其他很酷的事情。
You have 2 options. You can either use JQuery or scriptaculous to do this. There are plenty of examples and tutorials on the internet or you can simply use java script to this.
First download émile It's a very simple javascript animation framework.
Since you didn't provide any HTML markup, I'm assuming you have something like this.
and let's say your side-panel element has a CSS style of
width:200px
. Ok, now place a button somewhere and assign it a click event. Such asonclick="togglePanel()"
Here is the content of the togglePanel function:
If you check the documentation of the emile framework you can do lot's of other cool things.
由于您没有向我们提供您的代码(您已经构建了),这就是为什么我只是提供一个代码来帮助您(而且我不知道这是否是正确的答案)。这段代码需要
jQuery Ver.1.4
至少我这么认为,但我不清楚。无论如何,让我们开始吧。这是现场演示的链接。希望这有帮助!
as you haven't provided us your code (which you have build) that's why I'm just giving a code to help you (And I don't know that this is a right answer or not). This code needs
jQuery Ver.1.4
at least I think so, but I'm not clear. Anyways let's get started. Here is a link to live demo.Hope this helps!