Open spitfire64 opened 6 years ago
I wonder how to change css to animation-duration: 4s; in this script:
animation-duration: 4s;
<script> $.notify({ // Options message: '<?php escEcho($this->session->flashdata('message'));?>' },{ // Settings type: '<?php escEcho($this->session->flashdata('message_type'));?>', offset: { x: 100, y: 100 }, animate: { enter: 'animated fadeInDownBig', exit: 'animated fadeOutRight' } }); </script>
This should do the trick
.animated { -webkit-animation-duration: 4s; animation-duration: 4s; }
I wonder how to change css to
animation-duration: 4s;
in this script: