packery fit方法(jQuery)的第二个参数



我正在使用包库。

问题是关于fit方法的第二个参数。文档说它应该是一个元素,但是我不知道"元素"是什么意思。

下面的链接是我的问题的一个例子。

链接

当我点击调整大小按钮,fit似乎不工作。如果它的工作,当我调整'post 1', 'post 2'应该去第二行,而不是重叠。

下面的链接是我的意思的一个例子,但我希望通过按钮来触发。

链接

http://jsfiddle.net/9Q5sZ/3/查看此提琴

if (isLarge) {
        $("div#container").packery('fit', div[0]);
    } 

使用div[0]提供目标元素。

变量"div"是Jquery的输出对象,在运行时将是一个对象数组

div: jQuery.fn.init[1]
0: div.post.large
context: button.resize
length: 1
prevObject: jQuery.fn.init[1]
__proto__: Object[0]

,你可以看到额外的参数,如context,proto,长度等。但是你的Packery插件只需要精确的div对象(这个对象是指包文档中的元素)。因此div[0]将提供精确的div对象

div[0]: div.post
accessKey: ""
align: ""
attributes: NamedNodeMap
baseURI: "http://fiddle.jshell.net/9Q5sZ/3/show/"
childElementCount: 2
childNodes: NodeList[5]
children: HTMLCollection[2]
classList: DOMTokenList[1]
className: "post"
clientHeight: 100
clientLeft: 3
clientTop: 3
clientWidth: 211
contentEditable: "inherit"
dataset: DOMStringMap
dir: ""
draggable: false
firstChild: text
firstElementChild: button.resize
hidden: false
id: ""
innerHTML: "↵        <button class="resize">resize</button>↵        <div>post 1</div>↵    "
innerText: "resize↵post 1↵"
isContentEditable: false
lang: ""
lastChild: text
lastElementChild: div
localName: "div"
namespaceURI: "http://www.w3.org/1999/xhtml"
nextElementSibling: div.post
nextSibling: text
nodeName: "DIV"
nodeType: 1
nodeValue: null
offsetHeight: 106
offsetLeft: 0
offsetParent: div#container
offsetTop: 0
offsetWidth: 217
onabort: null
onbeforecopy: null
onbeforecut: null
onbeforepaste: null
onblur: null
oncancel: null
oncanplay: null
oncanplaythrough: null
onchange: null
onclick: null
onclose: null
oncontextmenu: null
oncopy: null
oncuechange: null
oncut: null
ondblclick: null
ondrag: null
ondragend: null
ondragenter: null
ondragleave: null
ondragover: null
ondragstart: null
ondrop: null
ondurationchange: null
onemptied: null
onended: null
onerror: null
onfocus: null
oninput: null
oninvalid: null
//Object continues

相关内容

  • 没有找到相关文章

最新更新