如何我,如果我的代碼是這樣的自動調整圖像: 自動調整圖像
<script type="text/javascript">
jQuery.noConflict();
jQuery(document).ready(function() {
var count = 0;
function animate() {
jQuery(".fadein").eq(count).fadeIn(1000);
count++;
if(count <= jQuery(".fadein").length) {
setTimeout(animate, 1000);
} else {
jQuery("a.fadein").fadeOut(1000);
count = 0;
animate();
}
}
animate();
});
</script>
這會是正確的嗎?
<script type="text/javascript">
jQuery.noConflict();
jQuery(document).ready(function() {
var count = 0;
function animate() {
jQuery(".fadein").eq(count).fadeIn(1000);
count++;
if(count <= jQuery(".fadein").length) {
setTimeout(animate, 1000);
} else {
jQuery("a.fadein").fadeOut(1000);
count = 0;
animate();
}
}
animate();
})
function fitImagetoContainer() { $("img").each(function(i) {
$(this).width($(this).parent().width()); //or your logic
}); }
//Call the function at load
$(window).load(function() { fitImagetoContainer(); });
//Also call the function when the window resizes
$(window).resize(function() { fitImagetoContainer(); });;
</script>
我想你錯過了一些標記那裏。 – Marcel 2012-04-05 10:10:35
你是什麼意思自動調整?如果圖像比容器小,比容器大,你想要發生什麼? – 2012-04-05 10:10:55
@arasmussen:我的意思是,如果我調整瀏覽器的大小,那麼圖片也會跟隨圖片的大小。那可能嗎? – tintincutes 2012-04-05 10:12:52