元素可见性上的 ASP.NET 滚动或更酷的动画
由于可以在 ASP.net 中不使用 JavaScript 来显示/隐藏 ASP html 元素,是否可以扩展该功能,以便通过滚动或收缩动画使显示/隐藏看起来更酷?
Since it is possible to show/hide asp html elements without using JavaScript in ASP.net, is it possible to extend that capability so that the show/hide will look cooler with scroll or shrinking animation?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 asp.net 中显示/隐藏 HTML 元素是在服务器上完成的。隐藏元素要么根本不存在于 HTML 源代码中,要么使用 CSS
Visibility
属性标记为不可见。滚动或缩小必须在客户端完成,最明显的运行时是 Javascript。为了实现您的效果,我建议使用 jQuery。
Showing/hiding HTML elements in asp.net is done on the server. A hidden element is either not present in the HTML source at all or is marked invisible using the CSS
Visibility
attribute.Scrolling or shrinking has to be done on the client, and the most obvious runtime there is Javascript. To achieve your effects I recommend using jQuery.