我最近在爲我的博客撰寫「懸停圖片的展示文字」代碼。在我用codepen寫完它並開始在我的博客中測試之後,我發現用codepen編寫的代碼在Blogger中不起作用。我查看了大約3個小時的代碼,但仍無法找到我的代碼出了什麼問題。
直播頁面(這裏的代碼不工作):http://ll5555.blogspot.com/p/test.html
守則codepen(其中的代碼工作正常):博客 - 懸停圖片上顯示的文字偏移並與計算不同
$(".hptable img").attr('class', 'gthumb');
$(".hptable td").hover(function() {
$.title = $(this).children().attr('title');
if (typeof $.title !== typeof undefined && $.title !== false) {
$.title = $.title.replace(/\n/, "<br />");
$(this).children().after("<div class=title>" + $.title + "</div>");
$(this).children().removeAttr('title');
}
$(this).children().next("div.title").show();
}, function() {
$(this).children().next("div.title").hide();
});
$(".hptable tr td").mousemove(function(e) {
var width = $(this).children().next('div.title').width();
var height = $(this).children().next('div.title').height();
$(this).children().next("div.title").css("top", e.pageY - height);
$(this).children().next("div.title").css("left", e.pageX - width/2);
});
.hptable {
text-align:center;
}
.hptable td:hover:not(.v):not(.h) {
background-color: #CEE9FF;
cursor: pointer; cursor: hand;
}
.cell {
vertical-align: middle;
width: 176px;
max-width: 177px;
height: 176px;
max-height: 177px;
text-align: center;
border: 1px solid #87CEEB !important;
background-color: #D9F9FF;
}
.hptable img {
vertical-align:middle;
max-width: 175px;
max-height: 175px;
}
.hptable .h {
height: 30px;
}
.hptable .v {
width: 30px;
}
.title {
position: absolute;
text-align: center;
vertical-align: middle;
width:auto;
height:auto;
display:none;
color: white;
font-size: large;
font-weight: bold;
text-shadow:
1px 1px 0 #000,
0 0 2px #5F84CE, 0 0 3px #4C6AA5;
white-space: nowrap !important;
}
.hptable tr td, .hptable tr, .label:before, .label:after {
-webkit-transition: all 1.5s;
-moz-transition: all 1.5s;
-o-transition: all 1.5s;
transition: all 1.5s;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<div style="padding: 50px;">
<hr/><h1>GAME SHARE</h1><hr/>
<table class="hptable">
<tr>
<td class="null h"></td>
</tr><tr>
<td class="null cell">
<img src="http://i.imgur.com/AcqrCtG.png" title="機動戦士ガンダム ガンダムVS.ガンダムNEXT PLUS
Gundam vs. Gundam NEXT PLUS" />
</td></tr></table>
</div>
爲什麼不能抵消你的'top'位置,以彌補在Blogger? – Daerik
博主確實有很多div標籤,很難找出'title'用來引用/定位其相對於該元素的絕對位置的元素。這看起來像我不得不放棄我花了半天的代碼。 :| – Louis55
我在說的是它很好地跟隨着光標。只需抵消遊覽「頂部」的位置。 – Daerik