如何在 GWT 中旋转 Widget?

发布于 2024-10-03 09:54:07 字数 97 浏览 1 评论 0原文

我正在尝试在 GWT 中旋转 Widget(实际上是 LayoutPanel)。我认为这在例如 jQuery 中是可能的,但似乎无法找到如何在(纯)GWT 中做到这一点。是否可以?

I'm trying to rotate a Widget (a LayoutPanel in fact) in GWT. I think this is possible in e.g. jQuery, but can't seem to find out how to do it in (pure) GWT. Is it possible?

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

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

发布评论

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

评论(2

几味少女 2024-10-10 09:54:07

旋转

元素并不那么容易。请参阅此处此处提供一些输入。我所知道的 GWT 效果库(此处列出了一些)不提供旋转支持。

Rotating a <div> element is not that easy. See here and here for some input. The effects libraries for GWT I know of (some listed here) do not provide support for rotation.

囚你心 2024-10-10 09:54:07

试试这个:

<yourwidget>.getElement().getStyle().setProperty("transform", "rotate(20deg)");

您可以按照相同的模式进行大量转换。

Try this:

<yourwidget>.getElement().getStyle().setProperty("transform", "rotate(20deg)");

You can can do lots of transformations following the same pattern.

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