Facebook 照片缩放:是如何做到的?
Facebook 照片缩放是我在浏览大量内容时遇到的最好的实用程序之一照片。我的问题是它是如何构建的,以及是否已经编写了一个免费的 javascript 应用程序来模仿其功能。
我最初的搜索找到了一些关于它如何成为一个有用的扩展的链接,但没有详细说明底层的 javascript。类似的程序可以在 FFixer 中找到。
Facebook photo zoom is one of the best utilities I have ever encountered when browsing a massive amount of photos. My question is how it was built, and if there is a free javascript application already written that mimics its functionality.
My initial search turned up a number of links on how it was a useful extension, but nothing detailing the underlying javascript. A similar programme can be found in FFixer.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您查看 FB 图像 URL,它们是相当可预测的。迷你以 _q 结尾,然后用 _n 变大,等等...
您可以随心所欲地制作效果,但本质上他只是检测到页面是 FB,然后将鼠标悬停在具有特定类别的图像上图像将变得更大,并将图像末尾的 _q 替换为 _n 或其他...
之后,您可以使用各种技术来呈现图像。
If you look at the FB image URLs they are rather predictable. The mini-ones end in _q, then it gets larger with _n, etc etc...
You can make the effect however you wish, but essentially he just detects that the page is FB then on hover of an image with a certain class the image will get larger and replace _q at the end of the image with _n or whatever...
After that you can use a variety of techniques to present the image.