Is there any way to adjust the Alertify drop down and exit of the alerts?

StackOverflow https://stackoverflow.com/questions/21740110

  •  10-10-2022
  •  | 
  •  

문제

Currently Alertify drops down the alert so that it bounces and comes back up a bit. Is there a way to just have it slide down?

Thanks

도움이 되었습니까?

해결책

No one had any answers here so I finally dug it out myself.

Alertify uses CSS3 transitions to show and hide its dialogs. As soon as the class is assigned the dialog bounces onto the screen:

elDialog.className = "alertify alertify-" + type + " " + css; 

The classes are defined in alertify.core.css:

enter image description here

To get rid of the bounce I just replaced the cubic-bezier definitions:

enter image description here

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top