如何将缩放与-moz-transform一起使用?
任何机构都有一个很好的示例,展示如何使用 -moz-transform 进行缩放?
Any body has a Good example showing how to use scale with -moz-transform ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您链接到的 MDC 页面实际上很好地解释了这一点。
我给你举了一个简单的例子。演示: http://jsfiddle.net/SZ87b/1/ 代码:
The MDC page you linked to actually explains it pretty well.
I made you a quick example. Demo: http://jsfiddle.net/SZ87b/1/ Code:
这是市长浏览器的 CSS 示例
值scale(2,4) 将宽度转换为其原始大小的两倍,将高度转换为其原始大小的4 倍。
here is an example of the css for the mayor browsers
The value scale(2,4) transforms the width to be twice its original size, and the height 4 times its original size.
使用缩放(或旋转)变换时,您可能需要设置原点。
以获得您正在寻找的效果。
When using a scale (or rotate) transform you may need to set the origin.
to get the effect you are looking for.