Jump to content
  • 0

Скрипт


-O-J-A-
 Share

Question

Всем доброго дня\вечера!

Вот есть такой код жикверный, но у меня есть сомнения что он не совсем правильно работает (смысл в том что скрипт ищет нужные классы, если есть то показует нужную вещ), секций с продуктами должно быть большое количество и думаю нагрузка будет огромная.

Если что не так я сделал, то покажите, буду очень благодарен.

<style type="text/css">
.info{
width:200px;
position:absolute;
color:#999999;
font-size:14px;
font-family:Georgia,serif;
background-color:#000000;
background:url(pods.png);
border:1px solid #cccccc;
padding:4px;
}
</style>

<script type="text/javascript">
$(document).ready(function(){

//Хлеб
$(".baton").attr({ src:"baton.png"});
$(".baton").mouseover(function(e){$(document.body).append('<div id="prev" class="info"><img src="baton.png" align="left">батон</div>');});
$(".baton").mousemove(function(e){$("#prev").css({top:e.pageY+15,left:e.pageX+15});});
$(".baton").mouseout(function(){document.body.removeChild(document.getElementById("prev"));});

//Колбаса
$(".kolbasa").attr({ src:"kolbasa.png"});
$(".kolbasa").mouseover(function(e){$(document.body).append('<div id="prev" class="info"><img src="kolbasa.png" align="left">колбаса</div>');});
$(".kolbasa").mousemove(function(e){$("#prev").css({top:e.pageY+15,left:e.pageX+15});});
$(".kolbasa").mouseout(function(){document.body.removeChild(document.getElementById("prev"));});

});
</script>


<img class="baton">
<img class="kolbasa">

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy