7/12授業(メモ)

  • 動画
    • adobe media encoderでビデオ形式の変換。
    • html5で動画や音声を載せるとブラウザ対策等が必要。
    • you tubeを使う方法もある。


  • パソコン内の動作をとる。
    • jing,bandicam,camstudio
    • as

(後日編集)

<!DOCTYPE HTML>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>jQueryでアニメーションを表示</title>

<style type="text/css">

div{
width:200px;
height:200px;
background:red;
display:none;
}

</style>

<script type="text/javascript" src="jquery-1.7.2.min.js"></script>

<script type="text/javascript">

$(function(){
	$("button").click(function(){
		$("div").show("slow");
	});
});
</script>

</head>
<body>
<button>表示</button>
<div></div>
</body>
</html>