0

How to make progress-bar reverse animation left to right?

enter image description here

$(document).ready(function() {
        toastr.options = {
            'closeButton': true,
            'debug': false,
            'newestOnTop': false,
            'progressBar': false,
            'positionClass': 'toast-top-left',  
            'preventDuplicates': false,
            'showDuration': '1000',
            'hideDuration': '1000',
            'timeOut': '5000',
            'extendedTimeOut': '1000',
            'showEasing': 'swing',
            'hideEasing': 'linear',
            'showMethod': 'fadeIn',
            'hideMethod': 'fadeOut',
        }
    });
Manoj
  • 2,059
  • 3
  • 12
  • 24

1 Answers1

0

Override the css class (toast-progress)

.toast-progress {right: 0; left: auto;}