06/29: Flashレイヤーを重ねる
06/25: 画像編集 GIMP
06/22: Javascript > 透明度を変更する
とほほのスタイルシート入門
/**
* change Opacity
* @param string id
* @param integer num 0% to 100%
*/
function _changeOpacity(id, num)
{
if(document.all)
{
document.getElementById(id).style.filter="alpha(opacity=0)";
document.getElementById(id).filters.alpha.opacity = num;
}
else if(ua.indexOf('Gecko')!=-1)
{
document.getElementById(id).style.MozOpacity = (num / 100);
}
}
Array.indexOf in Internet Explorer - soledad penad�s
if(!Array.indexOf){
Array.prototype.indexOf = function(obj){
for(var i=0; i<this.length; i++){
if(this[i]==obj){
return i;
}
}
return -1;
}
}
Geoscience Australia: Geodesy - Calculating Distances Between Two Points good for google map?
MySQL AB :: MySQL 3.23, 4.0, 4.1 Reference Manual :: 14.2.5 InnoDB Startup Options and System Variables
【MySQLウォッチ】第32回 MySQL Enterprise 最初のバージョンアップとデータベースファイルのリサイズ:ITpro
idbファイルを作り直すには、alter table tablename type=innodb;
【MySQLウォッチ】第32回 MySQL Enterprise 最初のバージョンアップとデータベースファイルのリサイズ:ITpro
idbファイルを作り直すには、alter table tablename type=innodb;
Plugging Aptana into an existing Eclipse configuration - Aptana
Update site: http://update.aptana.com/install/3.2/
Update site: http://update.aptana.com/install/3.2/
06/01: HTML > フォーム送信の注意事項
CheckboxとRadioは、選択しないとデータを送信しない。