fadeIn,英語辭彙,是漸顯,漸明的意思。
英文用法,釋義,例句,計算機語言,概述,返回值,參數,示例,
英文用法
釋義
n. 漸顯;漸明
網路釋義
淡入
By 寒林風 , Posted in 日常工作中 ... fadeIn() 淡入 fadeOut() 淡出 fadeTo() 調整透明度 ...
漸明
漸顯
短語
FI FadeIn 淡入
FI FadeIn 淡入
FI FadeIn 淡入
例句
Each time a timetick event occurs in FadeIn state, the handleEvent method willcall a function that increases the opacity of the tooltip slightly.
每當在 FadeIn 狀態下發生 timetick 事件時,handleEvent 方法將調用一個函式,它略微增加工具提示的不透明度。
The function will return the current state, leaving the finite state machine inFadeIn state, until the tooltip's opacity reaches the maximum opacity parameter.
這個函式將返回當前狀態,讓有限狀態機保持在 FadeIn 狀態,直到工具提示的不透明度到達最大不透明度參數。
Or, when a timeout event occurs, you will cancel any timer that might be running,create the tooltip with an initial opacity of zero, start a ticker, and transition toFadeIn state.
當發生 timeout 事件時,將取消任何正在運行的計時器,創建一個初始不透明度為 0的工具提示,啟動一個斷續器,並轉換到 FadeIn 狀態。
計算機語言
fadeIn(speed,[callback])
概述
通過不透明度的變化來實現所有匹配元素的淡入效果,並在動畫完成後可選地觸發一個回調函式。
這個動畫只調整元素的不透明度,也就是說所有匹配的元素的高度和寬度不會發生變化。
提示和注釋
提示:如果元素已經顯示,則該效果不產生任何變化,除非規定了 callback 函式。
返回值
jQuery
參數
speed (String,Number) : 三種預定速度之一的字元串("slow", "normal", or "fast")或表示動畫時長的毫秒數值(如:1000)
callback (Function) : (Optional) (可選) 在動畫完成時執行的函式
示例
用600毫秒緩慢的將段落淡入
jQuery 代碼:
$("p").fadeIn("slow");
用200毫秒快速將段落淡入,之後彈出一個對話框
jQuery 代碼:
$("p").fadeIn("fast",function(){
alert("Animation Done.");
});