我正在尝试将一些生成的元素定期滑入容器中。我正在尝试使用 .animate() 的 jQuery。
到目前为止我所拥有的:
<div id="mainContainer">
</div>
<div id="photoContainer" class="photocontclass" style="display:none">
<img id="image" src="@Url.Action("Photo_Read", new { Id = 1})" />
</div>
<script>
var photoId = 2;
$(document).ready(function () {
setInterval(function () { getPhoto() }, 3000);
});
function getPhoto() {
$("#photoContainer #image").attr("src", '@Url.Action("Photo_Read")' + '/' + photoId);
var $new = $('#photoContainer').clone().attr("id", "photoContainer" + photoId);
$('#timelineContainer').prepend($new);
$new.show('slow');
// do animation with animate...
$new.animate({
left:'-50%' // which properties should I have?
}, 2000, "swing", function () {
$(this).remove();
});
photoId++;
} </script>
<style>
.photocontclass {
display:inline;
margin:10px;
background-color:white;
padding:5px;
position:absolute;
}
#timelineContainer {
background-color:grey;
height:200px;
width:100%;
margin:10px;
padding:10px;
}
</style>
应该从容器的$("#photoContainer")
右侧进来,从左侧出来......之后它应该被移除......
我有些疑惑:
- 我应该在(位置、左等...)中具有哪些 CSS
mainContainer
属性photoContainer
? - 我应该放在
photoContainer
里面还是外面mainContainer
? - 我应该在 animate 方法中具有哪些属性?