Показать div после 10 секунд загрузки страницы - PullRequest
2 голосов
/ 09 апреля 2020

У меня есть этот скрипт, я смог сделать его fadeOut в течение 20 секунд, но я хотел бы, чтобы после загрузки страницы отображалось 10 секунд, что мне следует изменить?

jQuery("#messageBox").hide().slideDown();
 setTimeout(function(){
  jQuery("#messageBox").fadeOut();        
 }, 20000);

Спасибо заранее

Ответы [ 2 ]

3 голосов
/ 09 апреля 2020

Чтобы содержимое исчезло через 10 секунд, необходимо скрыть все при загрузке страницы, используя CSS, чтобы избежать проблемы FOU C , а затем вызвать fadeIn(). Как то так:

setTimeout(function() {
  $('#container').fadeIn();        
}, 10000);
#container { display: none; }
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<div id="container">
  <h1>Lorem ipsum</h1>
</div>
0 голосов
/ 09 апреля 2020

Вы идете в правильном направлении. Так же, как вы применяете fadeOut.

Вам нужно показать ваш div через 10 секунд с помощью setTimeout. Но вы должны по умолчанию скрыть это div при загрузке страницы.

См. Пример ниже -

jQuery("#messageBox").hide();
setTimeout(function(){
  jQuery("#messageBox").slideDown();       
 }, 10000);
 setTimeout(function(){
  jQuery("#messageBox").fadeOut();        
 }, 20000);
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<div id="messageBox">
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
</div>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...