通过CSS缓慢旋转页面
是否可以通过 CSS 缓慢旋转页面的某些部分(在本例中为单个类)?我当前的代码:
.c1
{
-webkit-transform: rotate(170deg);
-moz-transform: rotate(170deg);
-o-transform: rotate(170deg);
}
不幸的是,以我拥有的访问量,无法使用 javascript 来实现此目的。
有没有办法在鼠标悬停或鼠标位于其顶部时旋转此类,或者只是简单地旋转?这必须完全通过 CSS 完成。
感谢您的帮助!我知道这是一个奇怪的请求,但我希望找到答案。
Is it possible to slowly rotate parts of a page (in this case a single class) via CSS? My current code:
.c1
{
-webkit-transform: rotate(170deg);
-moz-transform: rotate(170deg);
-o-transform: rotate(170deg);
}
Unfortunately there is no way to use javascript for this, with the amount of access I have.
Is there a way to rotate this class on rollover or if the mouse is on top of it, or just simply rotate? This must be done entirely via CSS.
Thanks for the help! I know this is a strange request, but I hope to find an answer.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于 Firefox:
对于 Chrome、Safari 和 Opera:
而 Internet Explorer 不支持此功能:]
For Firefox :
For Chrome , Safari and Opera :
And Internet Explorer Doesn't support this :]
有一些很好的提示和技巧此页面适用于 Firefox。 :)
类似于:
这就是您所拥有的,但请注意,Firefox 仅从 v3.1 及更高版本支持它。 :)
There are some good hints and tips on this page for Firefox. :)
Something like:
Which is what you have, but note that Firefox only supports it from v3.1 and up. :)