我是HTML / CSS的新手,我正在学习它,希望将知识转移到运行我编辑的在线报纸上。目前,我正在我自己的网站上工作,上面有图像翻转。我遇到了翻转工作完美的问题,但我无法向左或向右或向上和向下移动。对于我添加的每个新翻转,它们只会在页面下方的一个下方堆叠一个。我如何解决这个问题,并能够在页面周围定位翻转,就像它是一个正常的图片。下面是代码。提前谢谢。
如果您发现我需要解决的任何其他差异,我将很乐意感激。
身体
<div id="Chasity">
<a href="http://falserealityfilmsabout.tumblr.com/IIASVoiceofChasity"><img src="http://i34.photobucket.com/albums/d141/truevintage101/About%20us/72846ed1-9028-44bd-8671-3b4d7c6f7854_zps5a4e0faf.png"onmouseover="this.src='http://i34.photobucket.com/albums/d141/truevintage101/About%20us/Chasitytitle2_zps8b7679b9.png'" onmouseout="this.src='http://i34.photobucket.com/albums/d141/truevintage101/About%20us/72846ed1-9028-44bd-8671-3b4d7c6f7854_zps5a4e0faf.png'" /></a>
和css
body {
{block:IfNotDarkLayout}
width:100%;
height:100%;
color: #333;
color: rgba(0,0,0,.9);
{/block:IfNotDarkLayout}
{block:IfDarkLayout}
color: #fcfcfc;
color: rgba(255,255,255,.9);
{/block:IfDarkLayout}
background: {color:Content Background};
font-family: "Century Schoolbook", Century, Georgia, serif;
text-shadow: 0 0 1px {color:Content Background};
}
.Chasity{
left:300px;
top:400px;
position:fixed;
padding-top:10px;
padding-right:50px;
{CustomCSS}
答案 0 :(得分:0)
只需使用div:hover选择器更改图像,然后您可以将其移动到任何您想要的位置,请参阅我的示例
HTML:
<a href="http://google.com">
<div class="box"></div>
</a>
的CSS:
a{
display:block;
padding:0;
width:200px;
height:500px;
margin:auto;
}
.box{
background:url('http://placekitten.com/200/500');
display:block;
height: 100%;
width:100%;
margin:auto;
}
.box:hover{
background:url('http://placekitten.com/200/501');
}