Я не могу исправить эту проблему в нерабочее время - когда страница загружается через jquery.load
, текстовое поле падает, и оно смещается влево рядом с изображением, когда я использую jquery.animate
, чтобы сделатьскользящий эффект слева направо.Текстовое серое поле не должно опускаться, так как я установил его плавающим влево в css.
Вот jquery,
$('.block-item').click(function(){
$('#container-article').remove();
// Create a div after the parent clicked element.
$(this).after('<div id="container-article"></div>');
// Set the div to a variable and set its css.
var container_article = $('#container-article').css({
float:'left',
width:0
});
// Load the article into container_article.
container_article.load('article-3.php', function(){
$(this).animate({
width:800
},500);
});
return false;
});
Css,
.block-item {
width:50px;
height:500px;
display:block;
float:left;
background:#fff;
overflow:hidden;
cursor:pointer;
border:1px solid #000;
}
#article-content {
width:500px;
height:500px;
background:#ccc;
overflow:hidden;
}
#image-content {
float:left;
}
html,
<div class="block-item"></div>
<div class="block-item"></div>
<div class="block-item"></div>
<div class="block-item"></div>
<div class="block-item"></div>
<div class="block-item"></div>
<div class="block-item"></div>
загруженная страница,
<!-- binder-article -->
<div id="binder-article">
<div id="image-content"><img src="pic-2.jpg"/></div>
<!-- article-right -->
<div id="article-content">
<p>In Kaduna in Nigeria, a hotbed of Christian-Muslim conflict, Imam Ashafa and Pastor James led warring militias against each other. In pitched battles, Imam Ashafa's cousing was killed and Pastor James' hand was cut off. Ready to kill each other, they were suddenly overwhelmed by the power of their faith. Now best friends, they lead interfaith efforts in Nigeria and across the world. This film shares their amazing story...</p>
<p>In Kaduna in Nigeria, a hotbed of Christian-Muslim conflict, Imam Ashafa and Pastor James led warring militias against each other. In pitched battles, Imam Ashafa's cousing was killed and Pastor James' hand was cut off. Ready to kill each other, they were suddenly overwhelmed by the power of their faith. Now best friends, they lead interfaith efforts in Nigeria and across the world. This film shares their amazing story...</p>
</div>
<!-- article-right -->
</div>
Как это исправить?
Или любая другая лучшая функция jquery, чем animate
?
Спасибо.