mkl_power_box/components/interactive.js

59 lines
483 B
JavaScript

$(document).ready(function () {
var width = $("#videosContent").children().eq(0).outerWidth()
$("#leftSlip").click(function (e) {
var left = $("#videosContent").scrollLeft()
$("#videosContent").animate({'scrollLeft': left-width},100)
})
$("#rightSlip").click(function (e) {
var left = $("#videosContent").scrollLeft()
$("#videosContent").animate({'scrollLeft': width+left},100)
})
})