Jump to content
  • 0

Не пойму как присвоить только определенному классу span


Defender1
 Share

Question

есть скрипт тултипа

<script type="text/javascript"> 
$(document).ready(function() {
$(".tooltips").hover(
function() { $(this).contents("span:last-child").css({ display: "block" }); },
function() { $(this).contents("span:last-child").css({ display: "none" }); }
);

$(".tooltips").mousemove(function(e) {
var mousex = e.pageX + 10;
var mousey = e.pageY + 5;
$(this).contents("span:last-child").css({ top: mousey, left: mousex });
});
});
</script>

css

<style> 
span {
display:none;
position:absolute;
z-index:1000;
-moz-border-radius:4px;
-webkit-border-radius:4px;
}

.tooltip-style1 {
background:#5a85a5 url(im/onebit_47.png) 10px center no-repeat;
color:white;
min-height:30px;
padding:10px 20px 10px 65px;
opacity:0.9;
}

.tooltip-style2 {
background:#363636;
padding:3px;
color:white;
text-align:center;
}

.tooltip-style3 {
background:#e8e8e8;
color:black;
padding:15px;
}
pre {
font-size:10px;
}
</style>

но дело в том, что он применяет ко всем span

как можно сделать, чтобы только например к заданному классу?

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

да здесь в скрипте же всем спанам присваевается свойства одни и те же

f

unction() { $(this).contents("span:last-child").css({ display: "block" }); },
function() { $(this).contents("span:last-child").css({ display: "none" }); }

а всеже желательно чтобы присваивалось только определенным классам. А сейчас все, которые спаны - по умолчанию скрыты display: "none"

Link to comment
Share on other sites

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