close

一、介紹:

1. 使用slim版本無法使用淡入淡出,例如:https://code.jquery.com/jquery-3.4.1.slim.js

2. 語法如下:

    fadeIn()  透明淡入
    fadeOut()  透明淡出
    fadeTo()  調整透明度,slow 慢速 fast 快速

3. Math.random() 數值隨機

二、程式範本:

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>淡入淡出特效</title>
</head>
<!--https://code.jquery.com/jquery-3.4.1.slim.js無法使用淡入淡出-->
<script src="https://code.jquery.com/jquery-3.4.1.js"></script>
  
<script language="javascript">    
    $(document).ready(function(){
        $('#text1').hide();
    
        $('#t1').click(function(){
            $('#text1').fadeIn(1000);
            return false;
        });
    
        $('#t2').click(function(){
            $('#text1').fadeOut(1000);
            return false;
        });
        
        $('#t3').click(function(){
            $('#text1').fadeToggle(1000);
            return false;
        });
    
        
        $('#t4').click(function(){
            //slow 慢 fast 快
            $('#text1').fadeTo("slow",Math.random());//Math.random()數值隨機
            return false;
        });
    });
    
</script>

<body>
<div id="text1" >
    淡入與淡出建立選取元素的透明度動畫。<br>
    fadeIn() 透明淡入<br>
    fadeOut() 透明淡出<br>
    fadeTo() 調整透明度
</div>
<a href="#" id="t1">淡入特效</a>
<a href="#" id="t2">淡出特效</a>
<a href="#" id="t3">淡入與淡出特效</a>
<a href="#" id="t4">調整透明度與指定速度的特效</a>

</body>
</html>
 

arrow
arrow
    文章標籤
    jQuery HTML
    全站熱搜
    創作者介紹
    創作者 小甲學習地 的頭像
    小甲學習地

    學習資訊部落

    小甲學習地 發表在 痞客邦 留言(0) 人氣()