这是我的代码:
<!DOCTYPE HTML>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Carter+One" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<link rel="stylesheet" href="Style.css">
</head>
<body style="background: #C6D9FA;">
<div class="title-card logo-a caption-a"></div>
<div class="whitecircle" id="whitecircle1">
<img src="instagram.png" style="width:200px;height:200px">
</div>
<div class="whitecircle" id="whitecircle2">
<img src="twitter.png" style="width:200px;height:200px">
</div>
<div class="whitecircle" id="whitecircle3">
<img src="gmail.png" style="width:200px;height:150px">
</div>
<div class="whitecircle" id="whitecircle4">
<div id="usatflogo">
<img src="usatf.png" style="width:200px;height:220px">
</div>
</div>
</body>
</html>
和CSS:
.title-card {
position: absolute;
display: inline-block;
width: 200px;
height: 200px;
margin: 5px;
border: 1px solid #fff;
border-radius: 45px;
color: black;
padding: 25px;
overflow: hidden;
background-size:100% 100%;
font-family: Carter One;
text-align:center;
}
.title-card::before {
position: absolute;
display: inline-block;
left: 0%;
width: 100%;
height: 20%;
padding: 10px;
background: -moz-linear-gradient(top, rgba(0,0,0,0.53) 0%, rgba(0,0,0,0.24) 100%);
background: -webkit-linear-gradient(top, rgba(0,0,0,0.53) 0%,rgba(0,0,0,0.24) 100%);
background: linear-gradient(to bottom, rgba(0,0,0,0.53) 0%,rgba(0,0,0,0.24) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#87000000', endColorstr='#3d000000',GradientType=0 );
color: #fff;
overflow-x: hidden;
overflow-y: auto;
opacity: 0;
transform: translateY(200%);
transition: all 600ms ease;
}
.title-card:hover::before {
opacity: 1;
transform: translateY(100%);
}
.title-card.caption-a::before {
content: "Hamlet To Be or Not To Be Rhetorical Analysis";
}
.title-card.logo-a {
background-image: url("W.jpg");
}
#usatflogo{position:absolute;top:10%; left:18%;}
.whitecircle:hover{background-color:grey;}
.whitecircle{background-color: white;
height:300px;
width:300px;
border:1px;
position:absolute;
border-radius:50%;
top:60%;
left:0%;}
#whitecircle1{left:5%;}
#whitecircle2{left:25%;}
#whitecircle3{left:55%:}
#whitecircle4{left:65%;}
#whitecircle5{left:85%;}
#logoplacement{position:absolute;top:17.5%; left:17.5%;}
因此,我想在社交媒体黑白可徘徊的圈子中建立页脚。我原本将所有内容放置正确,但是我对其进行了编辑,因此可以使用类代替id,现在gmail徽标将不会移动,其他人似乎也都不会对此做出回应。我不知道这个问题可能是什么。我检查了所有代码,并且一切似乎在语法上都是正确的,内云(Nayone)是否知道可能是什么问题?
答案 0 :(得分:0)
请尝试以下代码:
<!DOCTYPE HTML>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Carter+One" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<style>
.title-card {
position: absolute;
display: inline-block;
width: 200px;
height: 200px;
margin: 5px;
border: 1px solid #fff;
border-radius: 45px;
color: black;
padding: 25px;
overflow: hidden;
background-size:100% 100%;
font-family: Carter One;
text-align:center;
}
.title-card::before {
position: absolute;
display: inline-block;
left: 0%;
width: 100%;
height: 20%;
padding: 10px;
background: -moz-linear-gradient(top, rgba(0,0,0,0.53) 0%, rgba(0,0,0,0.24) 100%);
background: -webkit-linear-gradient(top, rgba(0,0,0,0.53) 0%,rgba(0,0,0,0.24) 100%);
background: linear-gradient(to bottom, rgba(0,0,0,0.53) 0%,rgba(0,0,0,0.24) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#87000000', endColorstr='#3d000000',GradientType=0 );
color: #fff;
overflow-x: hidden;
overflow-y: auto;
opacity: 0;
transform: translateY(200%);
transition: all 600ms ease;
}
.title-card:hover::before {
opacity: 1;
transform: translateY(100%);
}
.title-card.caption-a::before {
content: "Hamlet To Be or Not To Be Rhetorical Analysis";
}
.title-card.logo-a {
background-image: url("W.jpg");
}
#usatflogo{
position:absolute;
top:10%;
left:18%;
}
.whitecircle:hover{
background-color:grey;
}
.whitecircle{
background-color: white;
height:300px;
width:300px;
border:1px;
position:absolute;
border-radius:50%;
top:60%;
left:0%;
}
.whitecircle1{
left:5%;
width:200px;
height:200px;
}
.whitecircle2{
left:25%;
width:200px;
height:200px;
}
.whitecircle3{
left:55%;
width:200px;
height:150px;
}
.whitecircle4{
left:65%;
width:200px;
height:220px;
}
#logoplacement{
position:absolute;
top:17.5%;
left:17.5%;
}
</style>
</head>
<body style="background: #C6D9FA;">
<div class="title-card logo-a caption-a"></div>
<div class="whitecircle whitecircle1">
<img src="instagram.png">
</div>
<div class="whitecircle whitecircle2">
<img src="twitter.png">
</div>
<div class="whitecircle whitecircle3">
<img src="gmail.png">
</div>
<div class="whitecircle whitecircle4">
<div id="usatflogo">
<img src="usatf.png">
</div>
</div>
</body>
</html>