You can post now and register later.
If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.
Здравствуйте, подскажите какой тег использовать для увеличения значения, пример на картинке.
Вроде, про такой тег я слышала. Если есть тег прогресс бар, значит и такое должно быть.
Question
nikki4
Задача - появление блока внизу экрана спустя определенное время.
например для теста через 5 секунд, в течение 3х секунд всплытие
.block { display:block; width:100%;max-height:340px; height:220px; position:fixed; background:coral; bottom: 0; max-width:900px; animation:anim 3s; animation-duration:anim 3s; -webkit-animation-delay: 5s; -moz-animation-delay: 5s; -o-animation-delay: 5s; animation-delay: 5s; } @keyframes anim { from {bottom:-100%;} to {bottom:0;} }
Живой пример
Если не добавлять задержку выезжает через 3 сек.
если добавить - сразу появляется и задержки нет.
разобрался с вопросом. Надо было изначально скрыть блок и в анимацию добавить появление:
@keyframes show{ 0%{ opacity:1; } 100% { opacity:1; } from {bottom:-100%;} to {bottom:0;} }
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.