[prisna-google-website-translator]
owl2 回调函数

回调的参数

function callback(event) {
    // Provided by the core
    var element   = event.target;         // DOM element, in this example .owl-carousel
    var name      = event.type;           // Name of the event, in this example dragged
    var namespace = event.namespace;      // Namespace of the event, in this example owl.carousel
    var items     = event.item.count;     // Number of items
    var item      = event.item.index;     // Position of the current item
    // Provided by the navigation plugin
    var pages     = event.page.count;     // Number of pages
    var page      = event.page.index;     // Position of the current page
    var size      = event.page.size;      // Number of items per page
}

初始化之前调用

zt3_box4_l_scroll.on('initialized.owl.carousel', function (event) {
	var items = event.item.count; // Number of items

	var img_src = $(this).find(".item").eq().attr("imgSrc");
	console.log(img_src);

})

初始化之后调用

zt3_box4_l_scroll.on('changed.owl.carousel', function (event) {
			var items = event.item.count; // Number of items

			var img_src = $(this).find(".item").eq().attr("imgSrc");
			console.log(img_src);

		})

回调方法

Type: attachable
Callback: onInitialize

When the plugin initializes.


Type: attachable
Callback: onInitialized

When the plugin has initialized.


Type: attachable
Callback: onResize

When the plugin gets resized.


Type: attachable
Callback: onResized

When the plugin has resized.


Type: attachable, cancelable, triggerable
Callback: onRefresh
Parameter: [event, speed]

When the internal state of the plugin needs update.


Type: attachable
Callback: onRefreshed

When the internal state of the plugin has updated.


Type: attachable
Callback: onDrag

When the dragging of an item is started.


Type: attachable
Callback: onDragged

When the dragging of an item has finished.


Type: attachable
Callback: onTranslate

When the translation of the stage starts.


Type: attachable
Callback: onTranslated

When the translation of the stage has finished.


Type: attachable
Callback: onChange
Parameter: property

When a property is going to change its value.


Type: attachable
Callback: onChanged
Parameter: property

When a property has changed its value.


Type: triggerable
Parameter: [speed]

Goes to next item.


Type: triggerable
Parameter: [speed]

Goes to previous item.


Type: triggerable
Parameter: [position, speed]

Goes to position.


Type: triggerable

Destroys carousel.


Type: triggerable
Parameter: data

Removes current content and add a new one passed in the parameter.


Type: triggerable
Parameter: [data, position]

Adds a new item on a given position.


Type: triggerable
Parameter: position

Removes an item from a given position.

暂无评论

发送评论 编辑评论


				
上一篇
下一篇