Здравствуйте. Такая проблема, не работают выдвижные кнопки на вордпресс, на голом html и в phpBB работают, а вот в вордпресс ни как. В чем может быть проблема? Вот код:
Код |
---|
<script type="text/javascript">
$(function($) {
$("#lk img").hover(
function () {
$(this).animate({right: '0px'}, {queue:false, duration: 350});
//$(this).css('right', '0px');
},
function () {
$(this).animate({right: '-200px'}, {queue:false, duration: 350});
// $(this).css('right', '-200px');
}
);
});
</script>
<a id="lk" href="ссылко">
<img alt="" alt="" src="ссылко на кнопку">
</a>
<style>
#lk img {
position: fixed;
top:125px;
right: -200px;
z-index: 99999;
cursor: pointer;
display: block;
}
</style> |