如何使用greasemonkey分割加载的图片?
我正在使用火狐浏览器。我想将图片分成3部分,然后使用greasemonkey仅显示中间部分。有人可以帮我吗... 谢谢
I'm using FireFox. I want to split a picture into 3 parts and then display only middle part using greasemonkey. Can someone please help me out...
Thank You
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过将图像设置为背景图像并操纵大小和背景位置来做到这一点。
以下是使用 jQuery 的实现方法:
我假设您想要水平分割它,但将其转换为垂直分割应该很简单。
请参阅此问题了解如何在 GreaseMonkey 中使用 jQuery。
You could do it by setting the image as a background image and manipulating the size and background-position.
Here's how to do it using jQuery:
I assume you want to split it horizontally, but it should be straightforward to convert this to split vertically.
See this question for how to use jQuery in GreaseMonkey.