Jump to content
  • 0

неработает анимация -wedbkit...


cyber_ua
 Share

Question

Плиз помогите написал скрипт,но столкнулся с проблемой что без анимации действия проходят ужасно.

Короче, полез в нет искать про анимацию css3 из того что нашел сделал такой код увилечения текста но ,он не работает.

подскажите почему?

.notVisible {
-webkit-animation-name:'fullText';
-webkit-animation-duration: 7s;
-webkit-animation-play-state:running;
@-webkit-keyframes 'fullText'{
from {
font-size:30%;
}
40%{
font-size:50%;
}
60%{
font-size:70%;
}
to{
font-size:100%;
}
}
}

Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0

@-webkit-keyframes записывается отдельно, а не в составе свойств селектора. Т.е. после

         -webkit-animation-play-state:running;

должна закрыться скобка. А в конце соответственно её убрать. В итоге так

.notVisible {
-webkit-animation-name:'fullText';
-webkit-animation-duration: 7s;
-webkit-animation-play-state:running;
}
@-webkit-keyframes 'fullText'{
from {
font-size:30%;
}
40%{
font-size:50%;
}
60%{
font-size:70%;
}
to{
font-size:100%;
}
}

Но посоветовал бы использовать transition. Поддержка более широкая.

Edited by alexandr_v-vich
Link to comment
Share on other sites

  • 0

спс за ответ щас попробую через transition .

а если использовать вендорные перфиксы то поидее все будет работать нормально для всех браузеров?

к примеру так

 -webkit-animation: highlight 1s ease;
03
-moz-animation: highlight 1s ease;
04
-webkit-transform: translateX(20px);
05
-moz-transform: translateX(20px);
06
-ms-transform: translateX(20px);
07
-o-transform: translateX(20px);

Edited by cyber_ua
Link to comment
Share on other sites

  • 0

попробывал через trancition выглядит довольно таки интересно, но как его можно скриптом запустить?

вот код

#testBlock {
font-size:10px;
-webkit-transition-property:font-size;
-webkit-transition-duration:2s;
-webkit-transition-timing-function:ease;
}

есть ли у него свойство похожее на -webkit-animation-play-state:

Link to comment
Share on other sites

  • 0
есть ли у него свойство похожее на -webkit-animation-play-state:

Я плохо понимаю эти кейфреймы. Наверное близкое к тому что вы сказали - transition-delay. Это задержка.

но как его можно скриптом запустить

transition — это тип реакции на событие. По-моему. Я как-то так его воспринимаю. В общем, он автоматом стоит на элементе, и при событии проявляется…

Link to comment
Share on other sites

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.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy