您所在的位置:首页 - 文化 - 正文文化
图书背景图黑白可爱卡通
源松
2024-05-16
【文化】
726人已围观
摘要```html可爱黑白图书背景body{margin:0;padding:0;background-color:#f2f2f2;display:flex;justify-content:center;
```html
body {
margin: 0;
padding: 0;
backgroundcolor: f2f2f2;
display: flex;
justifycontent: center;
alignitems: center;
height: 100vh;
}
.bookcontainer {
position: relative;
width: 280px;
height: 400px;
}
.book {
width: 100%;
height: 100%;
backgroundcolor: fff;
borderradius: 5px;
boxshadow: 0 0 10px rgba(0, 0, 0, 0.2);
position: relative;
overflow: hidden;
}
.book:before {
content: '';
position: absolute;
top: 0;
left: 50%;
width: 50%;
height: 100%;
backgroundcolor: f2f2f2;
bordertoprightradius: 5px;
boxshadow: 10px 0 15px rgba(0, 0, 0, 0.1);
zindex: 1;
}
.book:after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 50%;
height: 100%;
backgroundcolor: fff;
zindex: 1;
}
.bookspine {

position: absolute;
top: 10%;
left: 47%;
width: 6%;
height: 80%;
backgroundcolor: 000;
zindex: 2;
transform: skewY(20deg);
boxshadow: 5px 0 10px rgba(0, 0, 0, 0.2);
}
.bookpages {
position: absolute;
top: 5%;
left: 5%;
width: 90%;
height: 90%;
backgroundcolor: f2f2f2;
borderradius: 3px;
overflow: hidden;
}
.page {
width: 100%;
height: 100%;
backgroundimage: url('https://example.com/cuteillustration.jpg');
backgroundsize: cover;
backgroundposition: center;
transition: transform 0.4s;
position: absolute;
}
.page:nthchild(1) {
transform: perspective(1800px) rotateY(0deg);
}
.page:nthchild(2) {
transform: perspective(1800px) rotateY(40deg);
}
.page:nthchild(3) {
transform: perspective(1800px) rotateY(80deg);
}
.page:nthchild(4) {
transform: perspective(1800px) rotateY(120deg);
}
.page:nthchild(5) {
transform: perspective(1800px) rotateY(160deg);
}