Jump to content
  • 0

Jquery fadeIn


apexis
 Share

Question

13 answers to this question

Recommended Posts

  • 0

Я делаю проверку DOM всегда. Возможно избыточно, но работает гарантированно.

Дело в том что ты не сможешь предугадать кто раньше загрузить DOM или скрипт.

В данном случае скрипт грузится раньше, ибо он ближе к началу документа.


<script type="text/javascript">
$(document).ready(function(){
$('#clickme').click(function() {
$('#book').fadeIn('slow', function() {

setTimeout(function() {
$("#book").hide('blind', {}, 500)
}, 5000);

});
});
});
</script>

или


<script type="text/javascript">
$(document).ready(function(){
$('#clickme').click(function() {
$('#book').fadeIn('slow', function() {

$("#book").delay(5000).fadeOut();

});
});
});
</script>

Link to comment
Share on other sites

  • 0

Я делаю проверку DOM всегда. Возможно избыточно, но работает гарантированно.

Дело в том что ты не сможешь предугадать кто раньше загрузить DOM или скрипт.

В данном случае скрипт грузится раньше, ибо он ближе к началу документа.


<script type="text/javascript">
$(document).ready(function(){
$('#clickme').click(function() {
$('#book').fadeIn('slow', function() {

setTimeout(function() {
$("#book").hide('blind', {}, 500)
}, 5000);

});
});
});
</script>

или


<script type="text/javascript">
$(document).ready(function(){
$('#clickme').click(function() {
$('#book').fadeIn('slow', function() {

$("#book").delay(5000).fadeOut();

});
});
});
</script>

Огромное спасибо. Вы мне очень помогли

Link to comment
Share on other sites

  • 0


<script type="text/javascript">
//$(document).ready(function(){
$('.book-link').click(function(event) {
event.preventDefault();

var id = $(this).attr("href");
$(id).fadeIn('slow', function() {

$(this).delay(5000).fadeOut();

});
});
});
</script>


<a class="book-link" href="#book_1">Show book 1</a>
<a class="book-link" href="#book_2">Show book 2</a>
<a class="book-link" href="#book_3">Show book 3</a>

<div id="book_1" style="display: none;">Book #1</div>
<div id="book_2" style="display: none;">Book #2</div>
<div id="book_3" style="display: none;">Book #3</div>

Link to comment
Share on other sites

  • 0

Нашел вот такое решение


<script type="text/javascript">
$(document).ready(function(){
$('.book-link').click(function(event) {
event.preventDefault();
var i=$(this).data('id');
$('#d'+i).fadeIn('slow', function() {
$(this).delay(1000).fadeOut();
});
});
});
</script>
<input data-id='1' type="image" title="В корзину" src="/img/herbal/buy.png" name="my-add-button" value="В корзину" class="book-link" />
<div id="d1" style="display: none;">Book #1</div>

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