我在基于 tumblr 的主页上使用了一个愚蠢的 Javascript 组合,以在悬停时显示随机定位的缩略图,并在点击时获得更大的图片。我有几个问题:
tumblr 会自动将文本放入段落中,这会在链接 1 后面创建一个空格(与“,”一起使用不太好)。
当我制作更大并播放的视频时,它会在显示崩溃时继续播放。
我还没有找到在链接之前的文本后面创建自动换行的解决方案。我希望它看起来像这样:
Lorem Ipsum 只是印刷和排版行业的虚拟文本。
链接 1,链接 2
我还必须写两次图像链接,但我可以忍受。
如果有人帮助我,非常感谢。
附言。在此处查看实际操作:http ://roingbaer.com
$(".front").each(function() {
var right = Math.floor(Math.random()*800);
var top = Math.floor(Math.random()*500);
$(this).css({'margin-right': right});
$(this).css({'margin-top': top});
});
hoverdiv = $("div.hover")
hoverdiv.on("hover", function() {
$(this).children(".front").show()
});
hoverdiv.on("mouseleave", function() {
$(this).children(".front").hide()
})
hoverdiv.on("click", function() {
$(this).children(".back").toggle()
$(this).children(".front").hide()
});
CSS
p { margin:0;
padding:0;
display:inline;
}
.back {
display:none;
width:100%;
height:100%;
position:fixed;
top:0;
text-align:right;
}
.front
{
display:none;
max-height:200px;
max-width:auto;
position:fixed;
z-index:-50;
top:0;
right:100px;
}
img{
max-width:inherit;
max-height:inherit;
right:0;
top:0;
}
.hover {
cursor:pointer;
margin:0;
padding:0;
font-style:italic;
display:inline;
}
HTML
<div class="text">
<p>Lorem Ipsum is simply dummy</p>
<div class="hover"><a href="http://example.com">text</a>
<div class="front"><img src="http://images.roingbaer.com/ludvig.png"/></div>
</div>
<p>, of the printing and typesetting industry.</p>
<div class="hover">Link 1
<div class="front"><img src="http://24.media.tumblr.com/tumblr_lyz7fjMdnN1rp3eymo1_r2_500.jpg"/></div>
<div class="back"><img src="http://24.media.tumblr.com/tumblr_lyz7fjMdnN1rp3eymo1_r2_500.jpg"/></div>
</div>
<p>,</p>
<div class="hover">Link 2
<div class="front"><iframe frameborder="0" height="233" src="http://www.youtube.com/embed/VMeXGE_a8Gg" width="400"></iframe></div>
<div class="back"><iframe frameborder="0" height="480" src="http://www.youtube.com/embed/VMeXGE_a8Gg" width="853"></iframe></div>
</div>
</div>