js+css实现三维3d盒子立方体图片切换选择幻灯片效果代码

代码语言:html

所属分类:幻灯片

代码描述:js+css实现三维3d盒子立方体图片切换选择幻灯片效果代码,点击下面的图片,三维盒子就会旋转切换到选择的图片上。

代码标签: css 幻灯片 立体 三维 3d 立方体 图片

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

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

<head>
    <meta charset="UTF-8">
    <style>
        @import url(https://fonts.googleapis.com/css?family=Montserrat:500);
    
    :root {
    	/* Base font size */
    	font-size: 10px;
    
    	/* Border color variable */
    	--border-color: #e70;
    }
    
    * {
    	box-sizing: border-box;
    }
    
    body {
    	font-family: "Montserrat", Arial, sans-serif;
    	font-weight: 500;
    	line-height: 1.5;
    	text-align: center;
    	min-height: 100vh;
    	padding: 4rem 2rem;
    	color: #fafafa;
    	background-color: #080808;
    }
    
    h1 {
    	font-size: 4rem;
    }
    
    h2 {
    	font-size: 2rem;
    	margin-bottom: 2.5rem;
    }
    
    .cube-container {
    	position: relative;
    	width: 30rem;
    	height: 30rem;
    	margin: 5rem auto 6rem;
    	perspective: 100rem;
    }
    
    .cube {
    	position: absolute;
    	width: 100%;
    	height: 100%;
    	transform-style: preserve-3d;
    	transition: transform 1s cubic-bezier(0.32, 0.05, 0.35, 1.6);
    }
    
    .cu.........完整代码请登录后点击上方下载按钮下载查看

网友评论0