gpt4 book ai didi

html - 无法在页面上定位图像翻转

转载 作者:行者123 更新时间:2023-11-28 10:59:46 25 4
gpt4 key购买 nike

我是 HTML/CSS 的新手,正在学习它,希望将知识转移到运行我担任编辑的在线报纸上。目前,我正在自己的网站上工作,该网站上有图像滚动。我遇到了翻转效果完美的问题,但我无法左右或上下移动它。对于我添加的每个新翻转,它们只会在页面下方一直堆叠一个。我如何解决这个问题并能够将翻转定位在页面周围,就好像它是一张普通图片一样。下面是代码。提前致谢。

如果您发现我需要解决的任何其他差异,我将不胜感激。

body

    <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}

最佳答案

只需使用 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');
}

http://jsfiddle.net/KLxUy/

关于html - 无法在页面上定位图像翻转,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22509112/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com