<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>演劇ユニット ピンクアメーバ</title>

<!-- =========================== -->

<!-- ▼スライドショーのためのCSS -->

<!-- =========================== -->

<style type="text/css">

#slideshow {
position: relative;
width: 350px;
height: 243px;
}

#slideshow img {

position: absolute;

top: 0;

left: 0;

z-index: 8;

opacity: 0.0;

}

#slideshow img.active {

z-index: 10;

opacity: 1.0;

}

#slideshow img.last-active {

z-index: 9;

}

</style>

<!-- ================= -->

<!-- ▼jQuery 読み込み -->

<!-- ================= -->

<script type="text/javascript" src="https://code.jquery.com/jquery-1.12.4.min.js"></script>

<!-- ========================================== -->

<!-- ▼ふわっと切り替えるスクリプト(jQuery利用) -->

<!-- ========================================== -->

<script type="text/javascript">

function slideSwitch() {

var $active = $('#slideshow img.active');

if ( $active.length == 0 ) $active = $('#slideshow img:last');

var $next = $active.next().length ? $active.next()

: $('#slideshow img:first');

$active.addClass('last-active');

$next.css({opacity: 0.0})

.addClass('active')

.animate({opacity: 1.0}, 1000, function() {

$active.removeClass('active last-active');

});

}

$(function() {

setInterval( "slideSwitch()", 3000 );

});

</script>

<!--

※Simple jQuery Slideshow Script

Released by Jon Raasch (jonraasch.com) under FreeBSD license: free to use or modify, not responsible for anything, etc.

-->


</head>

<body>
<table width="900" height="30" border="0" align="center">
<tr>
<td height="66"><a href="index.html"><img src="img/pink_bar.jpg" width="900" height="84" alt="pinkamoeba" /></a></td>
</tr>
</table>
<table width="900" height="20 border="0" align="center">
<tr>
<td width="129"><div align="center"><kbd><a href="amoeba.html"><strong>pinkamoeba</strong></a></kbd></div></td>
<td width="139"><div align="center"><kbd><a href="corie.html">友永コリエ</a></kbd></div></td>
<td width="125"><div align="center"><kbd><a href="info.html">公演情報</a></kbd></div></td>
<td width="134"><div align="center"><kbd><a href="member.html">メンバー</a></kbd></div></td>
<td width="123"><div align="center"><kbd><a href="stage.html">過去作品</a></kbd></div></td>
<td width="110"><p align="center"><kbd><a href="mail.html">お問合せ</a></kbd></p></td>
<td width="110"><div align="center"><kbd><a href="blog.html">ブログ</a></kbd></div></td>
</tr></table>
<table width="900" height="243" border="0" align="center">
<div align="center"><br><br>お問合せ  mail: pink.amoeba.mail@gmail.com</div>
</table>
</body>
</html>

inserted by FC2 system