ahmed-wagdi / angular-joyride

A lightweight joyride directive for giving tours of your AngularJs application
MIT License
17 stars 9 forks source link

Step transitions aren't working #20

Open edarioq opened 6 years ago

edarioq commented 6 years ago

This SASS doesn't do anything, am I missing something?

//////////// STEP TRANSITION ANIMATIONS
    &.jr_transition {
        opacity: 0;
    }
    &.jr_transition-add {
        opacity: 1;
        transform: translateY(0px);
    }
    &.jr_transition-add-active {
        transform: translateY(-100px);
        opacity: 0;
    }

    &.jr_transition-remove {
        opacity: 0;
        transform: translateY(-100px);
    }

    &.jr_transition-remove-active {
        opacity: 1;
        transform: translateY(0px);
    }
ahmed-wagdi commented 6 years ago

This adds the fade-in/out animation between steps.

Could you explain what problem you're having exactly?