Tumblr:单击时显示全尺寸图像的代码

时间:2015-08-08 14:47:09

标签: javascript css image tumblr

我已经安装了新的Tumblr主题,并注意到如果我点击已发布的图片,它就不会显示完整尺寸的图片。

问题

首先点击图片 - 显示单挑的帖子。正常大小的图像。 第二次单击单挑模式 - 只需重新加载页面。

期望

首先点击图片 - 加载原始的完整尺寸图像,没有任何样式(只是普通图像,因此可以查看/下载)

我认为解决方案是代码的这一部分的一些选项。

/ * GENERAL * /

{{1}}

1 个答案:

答案 0 :(得分:0)

尝试更改

下的溢出
/**
 * Returns all elements of a particular tag name.
 *
 * @param tagName The tag name of the elements to return (e.g., HTML.Tag.DIV).
 * @param document The HTML document to find tags in.
 * @return The set of all elements in the HTML document having the specified tag name.
 */
public static Element[] getElementsByTagName(HTML.Tag tagName, HTMLDocument document)
{
    List<Element> elements = new ArrayList<Element>();

    for (ElementIterator iterator = new ElementIterator(document); iterator.next() != null;)
    {
        Element currentEl = iterator.current();

        AttributeSet attributes = currentEl.getAttributes();

        HTML.Tag currentTagName = (HTML.Tag) attributes.getAttribute(StyleConstants.NameAttribute);

        if (currentTagName == tagName)
        {
            elements.add(iterator.current());
        } else if (currentTagName == HTML.Tag.CONTENT) {
            for (Enumeration<?> e = attributes.getAttributeNames(); e.hasMoreElements();)
            {
                if (tagName == e.nextElement())
                {
                    elements.add(iterator.current());
                    break;
                }
            }
        }
    }

    return elements.toArray(new Element[0]);
}

从隐藏到可见。如果你看看w3schools上的CSS溢出属性,它会解释更多关于它的信息。那可能就是问题!希望有所帮助。