window.operTop = function() {
var headerDom = '<div class="zzc-guide-back" ><img style="height:50%; width:50%; margin:12px;" src="/img/111.png"></div>';
var node = document.createElement('div');
node.innerHTML = headerDom ;
$("#ly_78")[0].appendChild(node);
$(".zzc-guide-back").each(function() {
$(this).css("width", "50px");
$(this).css("height", "50px");
$(this).css("border-radius", "28px");
$(this).css("border", "1px solid #D6DDE5");
$(this).css("margin-top", "10px");
$(this).css("right", "50px");
$(this).css("bottom", "50px");
$(this).css("zIndex", "999999");
$(this).css("cursor", "pointer");
$(this).css("position", "fixed");
$(this).css("background-color", "#fff");
$(this).css("display", "none");
});
document.querySelector('.zzc-guide-back').addEventListener('click',
function() {
$('html').animate({
scrollTop: 0
},
600)
});
window.addEventListener('scroll',function(){
onscroll();
});
}
window.onscroll = function(){
var height = document.documentElement.scrollTop || document.body.scrollTop;
if(height >= 200){
$('.zzc-guide-back').css("display", "block");
}else{
$('.zzc-guide-back').css("display", "none");
}
}