在 django 中操作 oembed
我正在使用 django-oembed 应用程序嵌入(以及其他内容)一些 flickr 照片:使用此:
{% oembed %} http://www.flickr.com/photos/majdal/3866163776/ {% endoembed %}
将返回此:
<img alt="Basilica di San Giorgio Maggiore" src="http://farm3.static.flickr.com/2429/3866163776_3e63cc9b49.jpg">
这非常好,只是我需要向照片添加圆角蒙版。我知道如果图像是 a 的背景我可以做到这一点,但对于 {% oembed %} 标记的输出来说这是不可能的。关于还有什么可行的任何想法吗?
谢谢!
I'm using the django-oembed app to embed (among other content) some flickr photos: Using this:
{% oembed %} http://www.flickr.com/photos/majdal/3866163776/ {% endoembed %}
will return this:
<img alt="Basilica di San Giorgio Maggiore" src="http://farm3.static.flickr.com/2429/3866163776_3e63cc9b49.jpg">
This is excellent, except that I need to add a rounded corner mask to the photo. I know I can do that if the image was a background to a , but that's not possible with the output of the {% oembed %} tag. Any ideas on what else could work?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
DIV
元素包装oembed
标记结果,并对其应用样式:You could wrap the
oembed
tag result with aDIV
element and apply styles to that: