Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/html/84.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Html 从嵌入的Flickr图像中删除导航箭头_Html_Image_Flickr - Fatal编程技术网

Html 从嵌入的Flickr图像中删除导航箭头

Html 从嵌入的Flickr图像中删除导航箭头,html,image,flickr,Html,Image,Flickr,我在Flickr上托管图像,并在Survey Monkey中使用以下HTML代码在多项选择题的回答部分显示图像: <iframe src="https://www.flickr.com/photos/128329805@N07/15472931866/player/" width="75" height="31" frameborder="1" allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen

我在Flickr上托管图像,并在Survey Monkey中使用以下HTML代码在多项选择题的回答部分显示图像:

<iframe src="https://www.flickr.com/photos/128329805@N07/15472931866/player/" width="75" height="31" frameborder="1" allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>

然而,图像出现时,一组箭头出现在图像上方-它们看起来像滚动箭头。对于某些用户,一旦加载图像,箭头会短暂出现,然后消失。然而,对于其他用户来说,图像和箭头都是静态加载的——它们不会消失。这并不理想,因为箭头覆盖了图像,使其不可见


这似乎不是一个浏览器问题,因为用户同时使用Chrome和IE8进行测试。有人有过类似的经验吗?知道如何移除这些箭头吗

如果您查看我添加到您的问题中的演示页面,您可以看到Flickr动态添加了覆盖导航。在使用iframe嵌入方法时,似乎没有办法避免这种情况

但是,您可以改为使用HTML嵌入方法,该方法也可以在“共享”对话框中找到:

<a href="https://www.flickr.com/photos/128329805@N07/15472931866" 
    title="10-2-2014 9-36-26 AM-0000 by Leanne Rayo, on Flickr">
    <img src="https://farm3.staticflickr.com/2946/15472931866_e6db07ce2a_t.jpg" 
        width="75" height="31" alt="10-2-2014 9-36-26 AM-0000"></a>

如果您不希望它是链接,只需删除两个锚定标记:

<img src="https://farm3.staticflickr.com/2946/15472931866_e6db07ce2a_t.jpg" 
    width="75" height="31" alt="10-2-2014 9-36-26 AM-0000">