从显示块动画到内联显示

发布于 2024-12-02 06:14:57 字数 66 浏览 1 评论 0原文

是否有可能使用 jquery 或 jquery ui 将无序列表从显示块动画化为内联显示。那么列表会顺利转变为内联吗?

Is it possible at all to use jquery or jquery ui to animate an unordered list from display block to display inline. So the list will smoothly transform to inline?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

复古式 2024-12-09 06:14:57

是的,这是可能的。不,没有一种好的、简单的内置方法。

Yes, it's possible. No, there isn't a nice, simple, built-in way.

临风闻羌笛 2024-12-09 06:14:57

这样对 animate() 的调用是有效的。但我们可能期望什么结果呢?
“top”的动画从 0 到 1000,分 100 步,每步将 top 增加 10。
块和内联之间的“步骤”/“切片”是什么?

Such a call to animate() would be valid. But which result may we expect?
Animation of "top" from 0 to 1000 in 100 steps increases top by 10 each step.
What are the "steps" /"slices" between block and inline?

拥有 2024-12-09 06:14:57

我知道这是一个非常古老的问题,但对于正在查看此线程的人来说,您现在可以向块属性添加自定义动画。

.subnav-is-opened .main-nav__secondary-nav {
   display: block;
   -webkit-animation: showNav 250ms ease-in-out both;
   -animation: showNav 250ms ease-in-out both;
 }

/* Chrome, Safari, Opera */
@-webkit-keyframes myfirst {
    from {opacity: 0;}
    to {opacity: 1;}
}

演示 - https://developers.google.com/web/fundamentals/

I know this is a very old question but for people who are looking at this thread, you can add a custom animation to the block property now.

.subnav-is-opened .main-nav__secondary-nav {
   display: block;
   -webkit-animation: showNav 250ms ease-in-out both;
   -animation: showNav 250ms ease-in-out both;
 }

/* Chrome, Safari, Opera */
@-webkit-keyframes myfirst {
    from {opacity: 0;}
    to {opacity: 1;}
}

Demo - https://developers.google.com/web/fundamentals/

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