稍微旋转文本——我应该使用 css 还是 javascript?
我正在尝试旋转一段文本,如下所示:
这可以用 css 来完成吗?我需要使用javascript吗?
I'm trying to rotate a block of text slightly like below:
Can this be done with css or do I need to use javascript?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以使用 CSS3 的
transform
< 以跨浏览器的方式完成此操作/a>,以及 IE 的过滤器
。参见: http://jsfiddle.net/dRQaw/
这是用来生成跨浏览器CSS的神奇工具。
You can do it in a cross browser fashion using CSS3's
transform
, and afilter
for IE.See: http://jsfiddle.net/dRQaw/
This is the magical tool used to generate the cross-browser CSS.
您可以使用 CSS3 转换来做到这一点:
You can do it with CSS3 transforms:
它将是纯 CSS 的。您可以使用 JS 来操作 CSS,但 JS 本身与表示没有任何关系,只是作为更改表示规则的一种方法。
It'd be CSS-only. You can use JS to manipulate the CSS, but JS itself has nothing to do whatsoever with presentation, other than being one method of changing the presentation rules.
你可以使用CSS。这是适用于 Firefox、Opera 和 Safari/Chrome 的 CSS。
You could use CSS. Here is CSS that will work in Firefox, Opera and Safari/Chrome.