顺便我正在收集css的filteralpha blur dropshadow shadow glow flipv fliph blend 除了这些,还有哪些呢,最好给出参数和值的范围,谢谢,如果有object可以做出好的效果,也请各位一并列出来,如果要分我可以另给,谢谢

解决方案 »

  1.   

    add Add 
    Sets or retrieves a value that indicates whether the filter image overlays the original image.  
    enabled Enabled 
    Sets or retrieves a value that indicates whether the filter is enabled.  
    freq Freq 
    Sets or retrieves the number of waves created by the Wave filter. 
    lightStrength LightStrength 
    Sets or retrieves the difference in light intensity between the peaks and troughs of the waves created by the Wave filter.  
    phase Phase S
    ets or retrieves the phase offset at which the sine wave starts.  
    strength Strength Sets or retrieves the distance, in pixels, that a filter effect extends.  
      

  2.   

    <STYLE>
       DIV.aFilter {filter:wave(
         strength=2,
         freq=3,
         lightstrength=20,
         add=0,
         phase=90);
         width: 150; color: #FF0000;}
    </STYLE><DIV CLASS="aFilter">
    This red text is displayed along a sine wave.
    </DIV>
      

  3.   

    Wave 滤镜 语法:{filter:wave(add=add,freq=freq,lightstrength=strength,phase=phase,strength=strength)}
    "wave" 属性把对象按垂直的波形样式打乱。默认是“TRUE(非0)”, 
    “ADD”表示是否要把对象按照波形样式打乱,“FREQ”是波纹的频率,也就是指定在对象上一共需要产生多少个完整的波纹,“LIGHTSTRENGTH”参数可以对于波纹增强光影的效果,范围0----100,“PHASE”参数用来设置正弦波的偏移量。“STRENGTH”代表振幅大小。