function toggle(){
$("#tempc").toggle(
function() {
$("#tempc").animate({width: 255, height: 220}, 1000);
$("#tempc").html("");
$("#tempc").css("background-color", "transparent");
$("#tempc").html("<iframe src='/src/stream.php?stream=1' width='255' height='225' frameborder='0' scrolling='no'></iframe><br><a href='javascript:;' onclick='hidegadget();' class='yellowblock'>Sluit</a>");
},
function() {
$("#tempc").animate({width: 50, height:50}, 1000);
$("#tempc").html("");
$("#tempc").css("background-color", "#FFFF00");
$.get('src/stream.php?stream=2', function(data002) {
$('#tempc').html(data002);
});
}
);
}
$.get('src/stream.php?stream=2', function(data002) {
$('#tempc').html(data002);
});
你好計算器,預緊IFRAME
前一段時間我試圖動畫一個div,好了,現在只有一件事作品。 當第一個功能被激活(開始第3行),並加載iframe。但是現在,我如何預加載iframe?因爲當動畫結束後未加載的iframe ...
問候