Jump to content
  • 0

Эффект печатающегося текста


StOK
 Share

Question

Подскажите, как сделать средствами CSS, но не скриптами, чтобы каждая строка начинала прописываться после того, как предыдущая закончила прописываться. Сейчас все строки прописываются одновременно.

HTML:

<p class="text-typing">1 строка</p>

<p class="text-typing">2 строка</p>

<p class="text-typing">3 строка</p>

<p class="text-typing">4 строка</p>

 

CSS:

.text-typing
{
    width: 21em;
    color:green;
    font-size: 22px;
    font-family: 'Marck Script', cursive;
    white-space:nowrap;
    overflow:hidden;
    -webkit-animation: type 5s steps(34, end);
    animation: type 5s steps(34, end);
    
}
@keyframes type{
    from { width: 0; }
}
 
@-webkit-keyframes type{
    from { width: 0; }
}
 

 

 

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

Большое спасибо за грамотное решение. В Вашем примере все отлично работает. Я пытаюсь прилепить этот код на страницу, сверстанную на ботстрапе через программку Mobirise. Там Ваше решение работает корректно в первой и второй строке. Третья и четвертая грузятся одновременно в первой. Не могли бы Вы подсказать, что может мешать корректной работе этого кода?

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