// Only run everything once the page has completely loaded
$(window).load(function(){
// Set general variables
// ====================================================================
var totalWidth = 0;
// Total width is calculated by looping through each yvgallery item and
// adding up each width and storing that in `totalWidth`
$(".yvgallery__item").each(function(){
totalWidth = totalWidth + $(this).outerWidth(true);
});
// The maxScrollPosition is the furthest point the items should
// ever scroll to. We always want the viewport to be full of images.
var maxScrollPosition = totalWidth - $(".yvgallery-wrap").outerWidth();
// This is the core function that animates to the target item
// ====================================================================
function toGalleryItem($targetItem){
// Make sure the target item exists, otherwise do nothing
if($targetItem.length){
// The new position is just to the left of the targetItem
var newPosition = $targetItem.position().left;
// If the new position isn't greater than the maximum width
if(newPosition <= maxScrollPosition){
// Add active class to the target item
$targetItem.addClass("yvgallery__item--active");
// Remove the Active class from all other items
$targetItem.siblings().removeClass("yvgallery__item--active");
// Animate .yvgallery element to the correct left position.
$(".yvgallery").animate({
left : - newPosition
});
} else {
// Animate .yvgallery element to the correct left position.
$(".yvgallery").animate({
left : - maxScrollPosition
});
};
};
};
// Basic HTML manipulation
// ====================================================================
// Set the yvgallery width to the totalWidth. This allows all items to
// be on one line.
$(".yvgallery").width(totalWidth);
// Add active class to the first yvgallery item
$(".yvgallery__item:first").addClass("yvgallery__item--active");
// When the prev button is clicked
// ====================================================================
$(".yvgallery__controls-prev").click(function(){
// Set target item to the item before the active item
var $targetItem = $(".yvgallery__item--active").prev();
toGalleryItem($targetItem);
});
// When the next button is clicked
// ====================================================================
$(".yvgallery__controls-next").click(function(){
// Set target item to the item after the active item
var $targetItem = $(".yvgallery__item--active").next();
toGalleryItem($targetItem);
});
});
Warning: Invalid argument supplied for foreach() in /var/sites/o/opl-ltd.co.uk/public_html/wp-content/plugins/woo-video-gallery/WooFrontend.php on line 260
Additional Information
Capacity KG |
5.5kg to 11kg
|
Drainage |
Pump
|
Type |
Free Standing
|
Special Requirements |
Undercounter
|
Vending |
Coin
|
Technical Specifications
- Drum volume in litres: 65
- Drum capacity in kgs/lbs: 6.5 / 14.3
- Extraction rpm / G-factor: 1165 / 400
- Dimensions (WxDxH): 710 x 740 x 1115
- Net weight: 170kg

Download Datasheet
Reviews
There are no reviews yet.