元素可见性上的 ASP.NET 滚动或更酷的动画

发布于 2024-11-09 11:11:44 字数 89 浏览 0 评论 0原文

由于可以在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

离鸿 2024-11-16 11:11:44

在 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文