How to Create Footer cart

/*--================= footer cart script =============*/

/* calculat height and add padding in existing footer*/
var fcartHeight = $('.footer-cart').outerHeight();
$(".footer-container").css({
    "padding-bottom": fcartHeight
});
/* calculat height set totop arrow */
$("#totop").css({
    "bottom": fcartHeight + 5
});
/* work toggle and changing the text on button */
$(".expand-btnouter").click(function() {
    var fcartClosebtn = $('.footer-cart').find(".fcclose");
    var fcartOpenbtn = $('.footer-cart').find(".fcopen");
    $(".f-cart-action-summery").toggle(300);
    $(this).toggleClass("fcclose");
    $(this).toggleClass("fcopen");
    $(fcartClosebtn).html('<span class="fcarctext">Click to Collapse</span><span class="fcarticon"><i class="fa fa-minus"></i></span>');
    $(fcartOpenbtn).html('<span class="fcarctext">Click to Expand</span><span class="fcarticon"><i class="fa fa-plus"></i></span>');

});

/*--================= footer cart script =============*/

Comments