将ajax更改为淡入淡出

时间:2012-10-04 15:45:41

标签: javascript ajax

我正在使用javascript和ajax将我的内容加载到我的div上,这一切都正常。但目前它有点静态而且有点难看。

我试图让它淡入淡出,所以当点击一个新标签时,前一个标签会淡出然后新标签会淡入。

我发现要使用的语法是$(selector).fadeIn(speed,callback),但是我无法弄清楚在哪里添加它,因为我读过的所有地方都说在你的点击功能之后添加它但我的代码没有。

    var bustcachevar=1 //bust potential caching of external pages after initial request? (1=yes, 0=no)
    var loadedobjects=""
    var rootdomain="http://"+window.location.hostname
    var bustcacheparameter=""

    function ajaxpage(url, containerid){
    var page_request = false
    document.getElementById(containerid).style.display = 'none';
    if (window.XMLHttpRequest) // if Mozilla, Safari etc
    page_request = new XMLHttpRequest()
    else if (window.ActiveXObject){ // if IE
    try {
    page_request = new ActiveXObject("Msxml2.XMLHTTP")
    } 
    catch (e){
    try{
    page_request = new ActiveXObject("Microsoft.XMLHTTP")
    }
    catch (e){}
    }
    }
    else
    return false
    page_request.onreadystatechange=function(){
    loadpage(page_request, containerid)
    }
    if (bustcachevar) //if bust caching of external page
    bustcacheparameter=(url.indexOf("?")!=-1)? "&"+new Date().getTime() : "?"+new Date().getTime()
    page_request.open('GET', url+bustcacheparameter, true)
    page_request.send(null)
    }

    function loadpage(page_request, containerid){
        if (page_request.readyState == 4 && (page_request.status==200 || window.location.href.indexOf("http")==-1)) {
            document.getElementById(containerid).innerHTML=page_request.responseText;
            document.getElementById(containerid).style.display = 'block';
        }
    }


    function loadobjs(){
    if (!document.getElementById)
    return
    for (i=0; i<arguments.length; i++){
    var file=arguments[i]
    var fileref=""
    if (loadedobjects.indexOf(file)==-1){ //Check to see if this object has not already been added to page before proceeding
    if (file.indexOf(".js")!=-1){ //If object is a js file
    fileref=document.createElement('script')
    fileref.setAttribute("type","text/javascript");
    fileref.setAttribute("src", file);
    }
    else if (file.indexOf(".css")!=-1){ //If object is a css file
    fileref=document.createElement("link")
    fileref.setAttribute("rel", "stylesheet");
    fileref.setAttribute("type", "text/css");
    fileref.setAttribute("href", file);
    }
    }
    if (fileref!=""){
    document.getElementsByTagName("head").item(0).appendChild(fileref)
    loadedobjects+=file+" " //Remember this object as being already added to page
    }
    }
    }

3 个答案:

答案 0 :(得分:2)

我会使用JQuery来简化你的AJAX代码。它还具有淡入和淡出的本机功能。

这是一个例子

function ajaxpage(url, containerid){
   $.get(url, function(response) {
      $('#'+containerid).fadeOut('slow', function() { 
         $('#'+containerid).html($.trim(response));
         $('#'+containerid).fadeIn('slow'); 
      });
   });
}

函数(响应){} 部分是AJAX GET调用的回调,然后是 $('#'+ containerid).fadeOut()<中的函数() / strong>在淡出完成后运行,然后调用fadeIn()。

因为淡出,然后填入新的HTML,然后淡入回调,这一切都以正确的事件顺序发生。

答案 1 :(得分:1)

对于javascript动画,我会包含jQuery,但是如果你不介意省略一些旧的浏览器,你也可以使用css3。

只需将其添加到您隐藏/显示的元素的CSS中:

-o-transition: all 1s ease-in-out;
-moz-transition: all 1s ease-in-out;
-webkit-transition: all 1s ease-in-out;
transition: all 1s ease-in-out;

这样,当您将displayblock等css属性更改为none时,它就会淡出。

修改:隐藏并在js中显示您的元素:

// you would put this in your click handler, so I guess in your ajaxpage function
document.getElementById(containerid).style.display = 'none';

// you would put this in the callback like
function loadpage(page_request, containerid){
    if (page_request.readyState == 4 && (page_request.status==200 || window.location.href.indexOf("http")==-1)) {
        document.getElementById(containerid).innerHTML=page_request.responseText;
        document.getElementById(containerid).style.display = 'block';
    }
}

答案 2 :(得分:-1)

淡入仅在您使用jQuery对象时才有效。

var ele = document.querySelector('div');
ele.fadeIn(); // Fail
$(ele).fadeIn(); // Works

因此,如果你有原始dom对象(没有jQuery),你可以通过$函数运行它然后你可以使用fadeIn。

更新


此外,fadeIn不必位于点击功能内,但这只是一个例子。您可以(几乎)在代码中的任何位置运行它。