A&E Cage Co. 40"x30" Classico Double Stack Bird Cage (2024)

  • $1,22999$1,229.99
  • A&E Cage Co. 40"x30" Classico Double Stack Bird Cage (3)
  • A&E Cage Co. 40"x30" Classico Double Stack Bird Cage (4)

"); object.find("li").addClass("nbs-flexisel-item"); if(settings.navigationTargetSelector && $(settings.navigationTargetSelector).length > 0) { $("

").appendTo(settings.navigationTargetSelector); } else { settings.navigationTargetSelector = object.parent(); $("

").insertAfter(object); } if(settings.infinite) { var childSet = object.children(); var cloneContentBefore = childSet.clone(); var cloneContentAfter = childSet.clone(); object.prepend(cloneContentBefore); object.append(cloneContentAfter); } }, /****************************** Set Event Handlers *******************************/ setEventHandlers: function() { var childSet = object.children(); $(window).on("resize", function(event){ canNavigate = false; clearTimeout(resizeTimeout); resizeTimeout = setTimeout(function(){ canNavigate = true; methods.calculateDisplay(); itemsWidth = methods.getCurrentItemWidth(); childSet.width(itemsWidth); if(settings.infinite) { object.css({ 'left': -itemsWidth * Math.floor(childSet.length / 2) }); } else { methods.clearDisabled(); $(settings.navigationTargetSelector).find(".nbs-flexisel-nav-left").addClass('disabled'); object.css({ 'left': 0 }); } }, 100); }); $(settings.navigationTargetSelector).find(".nbs-flexisel-nav-left").on("click", function (event) { methods.scroll(true); }); $(settings.navigationTargetSelector).find(".nbs-flexisel-nav-right").on("click", function (event) { methods.scroll(false); }); if(settings.autoPlay.enable) { methods.setAutoplayInterval(); if (settings.autoPlay.pauseOnHover === true) { object.on({ mouseenter : function() { canNavigate = false; }, mouseleave : function() { canNavigate = true; } }); } } object[0].addEventListener('touchstart', methods.touchHandler.handleTouchStart, false); object[0].addEventListener('touchmove', methods.touchHandler.handleTouchMove, false); }, /****************************** Calculate Display *******************************/ calculateDisplay: function() { var contentWidth = $('html').width(); var largestCustom = responsivePoints[responsivePoints.length-1].changePoint; // sorted array for(var i in responsivePoints) { if(contentWidth >= largestCustom) { // set to default if width greater than largest custom responsiveBreakpoint itemsVisible = settings.visibleItems; itemsToScroll = settings.itemsToScroll; break; } else { // determine custom responsiveBreakpoint to use if(contentWidth < responsivePoints[i].changePoint) { itemsVisible = responsivePoints[i].visibleItems; itemsToScroll = responsivePoints[i].itemsToScroll; break; } else { continue; } } } }, /****************************** Scroll *******************************/ scroll: function(reverse) { if(typeof reverse === 'undefined') { reverse = true } if(canNavigate == true) { canNavigate = false; settings.before.call(this, object); itemsWidth = methods.getCurrentItemWidth(); if(settings.autoPlay.enable) { clearInterval(autoPlayInterval); } if(!settings.infinite) { var scrollDistance = itemsWidth * itemsToScroll; if(reverse) { object.animate({ 'left': methods.calculateNonInfiniteLeftScroll(scrollDistance) }, settings.animationSpeed, function(){ settings.after.call(this, object); canNavigate = true; }); } else { object.animate({ 'left': methods.calculateNonInfiniteRightScroll(scrollDistance) },settings.animationSpeed, function(){ settings.after.call(this, object); canNavigate = true; }); } } else { object.animate({ 'left' : reverse ? "+=" + itemsWidth * itemsToScroll : "-=" + itemsWidth * itemsToScroll }, settings.animationSpeed, function() { settings.after.call(this, object); canNavigate = true; if(reverse) { methods.offsetItemsToBeginning(itemsToScroll); } else { methods.offsetItemsToEnd(itemsToScroll); } methods.offsetSliderPosition(reverse); }); } if(settings.autoPlay.enable) { methods.setAutoplayInterval(); } } }, touchHandler: { xDown: null, yDown: null, handleTouchStart: function(evt) { this.xDown = evt.touches[0].clientX; this.yDown = evt.touches[0].clientY; }, handleTouchMove: function (evt) { if (!this.xDown || !this.yDown) { return; } var xUp = evt.touches[0].clientX; var yUp = evt.touches[0].clientY; var xDiff = this.xDown - xUp; var yDiff = this.yDown - yUp; // only comparing xDiff // compare which is greater against yDiff to determine whether left/right or up/down e.g. if (Math.abs( xDiff ) > Math.abs( yDiff )) if (Math.abs( xDiff ) > 0) { if ( xDiff > 0 ) { // swipe left methods.scroll(false); } else { //swipe right methods.scroll(true); } } /* reset values */ this.xDown = null; this.yDown = null; canNavigate = true; } }, /****************************** Utility Functions *******************************/ getCurrentItemWidth: function() { return (object.parent().width())/itemsVisible; }, offsetItemsToBeginning: function(number) { if(typeof number === 'undefined') { number = 1 } for(var i = 0; i < number; i++) { object.children().last().insertBefore(object.children().first()); } }, offsetItemsToEnd: function(number) { if(typeof number === 'undefined') { number = 1 } for(var i = 0; i < number; i++) { object.children().first().insertAfter(object.children().last()); } }, offsetSliderPosition: function(reverse) { var left = parseInt(object.css('left').replace('px', '')); if (reverse) { left = left - itemsWidth * itemsToScroll; } else { left = left + itemsWidth * itemsToScroll; } object.css({ 'left': left }); }, getOffsetPosition: function() { return parseInt(object.css('left').replace('px', '')); }, calculateNonInfiniteLeftScroll: function(toScroll) { methods.clearDisabled(); if(methods.getOffsetPosition() + toScroll >= 0) { $(settings.navigationTargetSelector).find(".nbs-flexisel-nav-left").addClass('disabled'); return 0; } else { return methods.getOffsetPosition() + toScroll; } }, calculateNonInfiniteRightScroll: function(toScroll){ methods.clearDisabled(); var negativeOffsetLimit = (itemCount * itemsWidth) - (itemsVisible * itemsWidth); if(methods.getOffsetPosition() - toScroll <= -negativeOffsetLimit) { $(settings.navigationTargetSelector).find(".nbs-flexisel-nav-right").addClass('disabled'); return -negativeOffsetLimit; } else { return methods.getOffsetPosition() - toScroll; } }, setAutoplayInterval: function(){ autoPlayInterval = setInterval(function() { if (canNavigate) { methods.scroll(false); } }, settings.autoPlay.interval); }, clearDisabled: function() { var parent = $(settings.navigationTargetSelector); parent.find(".nbs-flexisel-nav-left").removeClass('disabled'); parent.find(".nbs-flexisel-nav-right").removeClass('disabled'); } }; if (methods[options]) { // $("#element").pluginName('methodName', 'arg1', 'arg2'); return methods[options].apply(this, Array.prototype.slice.call(arguments, 1)); } else if (typeof options === 'object' || !options) { // $("#element").pluginName({ option: 1, option:2 }); return methods.init.apply(this); } else { $.error( 'Method "' + method + '" does not exist in flexisel plugin!'); } };})(jQuery); });

The 40"x30" Classico Double Stack Breeder Cage is ideal for Mini Macaws, Small co*ckatoos, African Greys, Amazonsand other same sized birds.

Product Highlights:

  • Bird proof front door & feeder door locks
  • Horizontal side bars, vertical bars front & back
  • Front door safety latch
  • 4 swing out feeder doors
  • 4 stainless steel feeder cups & 2 perches
  • 2 breeder doors
  • Large front doors for easy access
  • Slide-out grill & tray for easy cleaning
  • 4 easy rolling casters
  • Non-toxic, durable and safe powder coated finish

Summary:

The Classico Double Stack by A&E Cages is packed full of all the features that bird owners need. The double size cage has all the space that bigger species need and provides them with plenty of options for entertainment and optimal living health. With bird proof front doors and feeder doors, your bird's safety is never in question. Your elegantly colored cage is also tested to be completely non-toxic for birds and is available in a fantastic selection of colors, including sandstone, platinum, and black. This unit is also available in stunning and ultra-durable stainless steel.

With a host of popular features, this model will not leave you wanting. It comes built with slide-out trays and grates for easy cleaning and waste removal, making your life much easier during cleaning times. It also has four swing-out feeder doors, four top-quality stainless steel feeder cups, two perches, and two breeder doors. The large front doors help prevent injury to your pets during entry and exit by providing ample room on all sides for placement and removal.

Key Specifications:
  • Bar Spacing: 1"
  • Bar Gauge: 4.0 mm
  • Cage Weight: 174 lbs.
  • Internal Dimensions:
    40"(W) x 30"(D) x 31"(H) (per section)
  • External Dimensions:
    40"(W) x 30"(D) x 73"(H) (both sections including base)
Technical Details:
  • Brand name: A.E. Cages
  • Warranty: 90 days
  • Shipping cost: Free freight shipping within mainland USA. Additional shipping costs will apply for shipments outside mainland USA.
  • Shipping time: Freight shipping will get your product to you within a week.
  • Packages: 2
  • Slide-out grate: 2 (1 per section)
  • Slide-out tray: 2 (1 per section)
  • Feeder doors: 4 (2 per section)
  • Feeder cups: 4 Stainless Steel Cups (2 per section)
  • Breeder doors: 2 (1 per section)
  • Perches: 4 (2 per section)
  • Finish: Powder-coating
  • SKU#: 4030-2

Available in these beautiful colors:

A&E Cage Co. 40"x30" Classico Double Stack Bird Cage (5)A&E Cage Co. 40"x30" Classico Double Stack Bird Cage (6)
PlatinumBlack

Shipping Details:

  • Allow 2 days for processing.
  • Ships freight, please allow 1-2 weeks for delivery.
A&E Cage Co. 40"x30" Classico Double Stack Bird Cage (2024)

References

Top Articles
Latest Posts
Article information

Author: Kieth Sipes

Last Updated:

Views: 5344

Rating: 4.7 / 5 (67 voted)

Reviews: 82% of readers found this page helpful

Author information

Name: Kieth Sipes

Birthday: 2001-04-14

Address: Suite 492 62479 Champlin Loop, South Catrice, MS 57271

Phone: +9663362133320

Job: District Sales Analyst

Hobby: Digital arts, Dance, Ghost hunting, Worldbuilding, Kayaking, Table tennis, 3D printing

Introduction: My name is Kieth Sipes, I am a zany, rich, courageous, powerful, faithful, jolly, excited person who loves writing and wants to share my knowledge and understanding with you.