jQuery 介紹(一)選取器

  • animate - 動畫效果
  • animate(params,[duration],[easing],[callback])
    params CSS 語法
    duration 動畫完成 params 的時間。("slow","normal","fast",微秒)
    easing 內定值 linear 和 swing。(需要外掛)
    callback 當效果完成時只執行一次的 function

    範例(每次往左移動 50px):

    $("#left").click(function(){
    $(".myshow").animate({left: '-50px'},"slow");
    });

繼續閱讀 »

Please follow and like us:

[PHP] 字串處理函數(一)

  • explode() - 將字串分割(以陣列儲存)
  • explode(separator,string,limit)
    範例:
    <?
    $student="kevin susan james";
    $stuednt_array=explode(" ",$student);
    foreach($stuednt_array as $index => $value)
    echo "student $index is: $value\n";
    ?>
    輸出:
    student 0 is: kevin
    student 1 is: susan
    student 2 is: james
    separator 分隔字元
    string 要處理的字串
    limit 可選。規定所返回的數組元素的最大數目

繼續閱讀 »

Please follow and like us:

[PHP] Class 使用方式

使用 new 將類別實體化:

<?
class a {  //a為處理面積的類別
    var $line=100;  //線的長度100
     function triangle ($x, $y) { //三角形面積方法
       return ($x*$y)/2;
    }
     function squre($z) {  //正方形面積方法
        return ($z*$z);
    }
}
$area = new a; //為類別a配置計憶體並且讓$area指向它
echo $area->line; //顯示面積物件的線
echo "<br>";
echo $area->triangle(1,2);//顯示三角形的面積
echo "<br>";
echo $area->squre(3);顯示正方形的面積
?>

繼續閱讀 »

Please follow and like us:
Pages: Prev 1 2