opacity表示透明 transition表示转化
比如:从{opacity:1} transition到{opacity:0.1}
就是从不透明到非常透明的转化
比如:从{opacity:1} transition到{opacity:0.1}
就是从不透明到非常透明的转化
2016-11-04
toggle()方法实现隐藏和展示切换:
<script>
$(function(){
$('.rMenu').click(function(){
$('ul li').not('#logo').toggle();
})
})
</script>
<script>
$(function(){
$('.rMenu').click(function(){
$('ul li').not('#logo').toggle();
})
})
</script>
2016-11-02
不知道这么急做什么。感觉就是完全看程序员再那写写写,然后把写了什么照着念。
基本一句都不解释,balabala完了,哦,效果出来了。
不正是因为教程是给新手看的,所以才要多解释吗?
我要是高手我还来跟着教程做什么?
完全不如上一个女老师。
基本一句都不解释,balabala完了,哦,效果出来了。
不正是因为教程是给新手看的,所以才要多解释吗?
我要是高手我还来跟着教程做什么?
完全不如上一个女老师。
2016-10-31
document.getElementsByTagName('a').onmouseover=function showMenu(){
this.style.display = "block";
};
document.getElementsByTagName('span').onmouseout=function hideMenu(){
this.style.display = "hide";
};
this.style.display = "block";
};
document.getElementsByTagName('span').onmouseout=function hideMenu(){
this.style.display = "hide";
};
2016-10-28
Uncaught TypeError: Cannot read property 'offsetHeight' of null
2016-10-21
按同一个标签关闭expand:
if($("a").hasClass("btn_active")){
$(".btn_active").on("click",function(){
$(".body").animate({height:"0px"},function(){
$(this).removeClass("active");
$(".btn_active").removeClass("btn_active")
});
return false;
});
};
if($("a").hasClass("btn_active")){
$(".btn_active").on("click",function(){
$(".body").animate({height:"0px"},function(){
$(this).removeClass("active");
$(".btn_active").removeClass("btn_active")
});
return false;
});
};
2016-10-17