0

1 ページの複数の画像でこの JavaScript を使用できるように、マウスオーバー時に img の ID を関数に渡そうとしていますか?

img_id をマウスオーバーされているものに変更しようとしています

誰かこれを撮ってくれませんか?

ありがとう!

<img 
src="http://coolimg2.1.jpg" 
alt="http://coolimg2."
onmouseover="animate();"
onmouseout="stopAnimation();"
id="myImg1" 
class="sample"
/>

<img 
src="http://coolimg3.1.jpg" 
alt="http://coolimg3."
onmouseover="animate();"
onmouseout="stopAnimation();"
id="myImg2" 
class="sample"
/>

<p id="test"></p>

<script type="text/javascript"
src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js">
</script> 

<script type="text/javascript">


        $(function() {
            $('.sample').mouseover(function() {
                $('#test').html(this.id);
            });
        });  



var myImages = [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16]
var img_index = 0;
var timer;
//I'm trying to change the img_id to what is being mouseovered on. not "myimg2"
var img_id = "myImg2";
var imgsrc = document.getElementById(img_id).alt;
// Start animation
function animate() {
    me = document.getElementById(img_id);

    me.src = imgsrc + myImages[img_index] + ".jpg"

    img_index++;

    if (img_index == myImages.length){
        img_index = 0;
    }

    timer = setTimeout(animate, 500);
}

function stopAnimation() {
    clearTimeout(timer);
}
</script>
4

1 に答える 1

1

マウスオーバー機能を次のように変更してみてください。

$('.sample').mouseover(function() {
   img_id = $(this).attr('id');
   animate();
});

これは、マウスオーバー要素の ID に変更された段落タグを示すjsfiddleです。

于 2013-01-26T12:13:21.480 に答える