WEBサイト制作の勉強

WEBサイト制作の勉強の為の解説ブログです。

フェリカテクニカルアカデミー

javascriptによるonclickイベント

<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>mouse-overイベント2</title>
<style>
html,body,h1,p{
margin: 0;
padding: 0;
}
img{
vertical-align: bottom;
}
h1{
text-align: center;
margin-bottom: 50px;
}
.wrapper{
width: 640px;
margin: 0 auto;
display: flex;
}
p:first-of-type{
margin: 0 20px 20px 0;
}
</style>
</head>
<body>
<h1>On-Mouse-Over</h1>

<div class="wrapper">
<div class="thumbnail">
<p><img src="img/01_thumb.jpg" alt="" onclick="main.src='img/01.jpg'"></p>
<p><img src="img/02_thumb.jpg" alt="" onclick="main.src='img/02.jpg'"></p>
</div>
<div class="main-photo">
<img src="img/01.jpg" alt="" name="main">
</div>
</div>
</body>
</html>