如何使用原型获取背景图像的 x 或 y 位置?
嘿,我正在使用 Prototype 制作一个简单的用户友好的 CSS 编辑器。不管怎样,我想知道我是否可以自己获取背景位置 x/y 值?
我希望我能做这样的事情,但遗憾的是它不起作用: element.getStyle('background-position-x);
我猜这是因为位置有不同的形式,比如“center”,而不仅仅是通用的。
Hey, I'm making a simple user friendly css editor using Prototype. Anyway, I was wondering whether I could get the background-position x/y values on their own?
I wish I could do something like this but sadly it doesn't work:element.getStyle('background-position-x);
I guess this is because position comes in different forms like 'center' rather than just being generic.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
嘿,这看起来效果很好。即使位置设置为“中心中心”,原型也会将其转换为百分比!非常方便!
不管怎样,谢谢大家的帮助。
Hey, this seemed to work pretty well. Even when the position is set to 'center center' prototype will translate this into percentages! Very handy!
Anyway, thanks for the help guys.