css实现三维立体图片盒子封面效果代码

代码语言:html

所属分类:布局界面

代码描述:css实现三维立体图片盒子封面效果代码,鼠标放上去有交互倾斜动画。

代码标签: css 三维 立体 图片 盒子 封面

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开


<!DOCTYPE html>
<html lang="en" >

<head>

  <meta charset="UTF-8">


  <link rel='stylesheet' href='https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500&amp;display=swap'>
  
<style>
* {
  box-sizing: border-box;
}

body {
  scroll-behavior: smooth;
  font: 300 100%/1.4 "Montserrat", sans-serif;
}

.section {
  background: #A6D1E6;
  color: #3D3C42;
  font-size: 1.2rem;
  padding: 2rem;
}
.section--light {
  background: #FEFBF6;
}
.section--dark {
  background: #3D3C42;
  color: #FEFBF6;
}
.section--color {
  background: #7F5283;
  color: #FEF.........完整代码请登录后点击上方下载按钮下载查看

网友评论0