缩放 CSS/JavaScript
我想知道如何通过javascript控制缩放属性, 像 div.style.top 一样,如何指定缩放?
I would like to know how zoom property can be controlled through javascript,
like div.style.top , how to specify for zoom ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
火狐浏览器和Chrome (Webkit) 相当于 IE 特定的
zoom
属性,分别是-moz-transform
和-webkit-transform
。示例代码如下:
您必须对 Javascript 更加小心(首先测试是否存在),但操作它们的方法如下:
The Firefox & Chrome (Webkit) equivalents to the IE-specific
zoom
property are, respectively,-moz-transform
and-webkit-transform
.A sample code would be:
You'd have to be a bit more careful with Javascript (test for existence first), but here's how you'd manipulate them:
它是
style
的一个属性,但并非所有浏览器都支持。它是 Internet Explorer 实现的 CSS 的非标准 Microsoft 扩展。它的访问方式如下:It is a property of
style
, but it's not supported by all browsers. It's a non-standard Microsoft extension of CSS that Internet Explorer implements. It is accessed like this:您可能想尝试一个名为 Zoomoz 的轻量级 jQuery 插件。它使用 CSS3 变换属性(平移、旋转、缩放)。查看“缩放 jQuery 方式”部分。希望它有所帮助。
You might want to try a lightweight jQuery plugin called Zoomoz. It uses CSS3 transform properties (translate, rotate, scale). Check out the "Zooming the jQuery way section. Hope it helps.