前提・実現したいこと
ふわっと切り替わるスライドバナーを作成して完成しましたが、これにリンクを付けたいのですがリンクを付けると1枚しかふわっとしません。
教えてください。 どうぞ宜しくお願いいたします。
該当のソースコード
<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()", 4000 ); }); </script> <style type="text/css"> #slideshow { position: relative; width: 728px; height: 280px; } #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> </head> <body> <p id="slideshow"> <a href=""> <img src="" alt="" /></a> <a href=""> <img src="" alt="" /></a> <a href=""> <img src="" alt="" /></a> <a href=""> <img src="" alt="" /></a> <a href=""> <img src="" alt="" /></a> <a href=""> <img src="" alt="" /></a> </p></body></html>試したこと
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
回答2件
あなたの回答
tips
プレビュー