search
HomeWeb Front-endHTML Tutorial基于css3新属性transform及原生js实现鼠标拖动3d立方体旋转_html/css_WEB-ITnose

基于css3新属性transform,实现3d立方体的旋转

通过原生JS,点击事件,鼠标按下、鼠标抬起和鼠标移动事件,实现3d立方体的拖动旋转,并将旋转角度实时的反应至界面上显示

 

实现原理:通过获取鼠标点击屏幕时的坐标和鼠标移动时的坐标,来获得鼠标在X轴、Y轴移动的距离,将距离实时赋值给transform属性

从而通过改变transform:rotate属性值来达到3d立方体旋转的效果

  HTML代码块:

<body>    <input type="button" class="open" value="点击散开"/>    <input type="text" class="xNum" value="0"/>//X轴旋转角度    <input type="text" class="yNum" value="0"/>//Y轴旋转角度    <input type="text" class="zNum"/>    <div class="big_box">        <div class="box">            <span>1</span>            <span>2</span>            <span>3</span>            <span>4</span>            <span>5</span>            <span>6</span>        </div>    </div></body>

  CSS代码块:

<style>        body{cursor: url("img/openhand1.png"),auto;}        .big_box{            width: 500px;            height: 500px;            margin: 200px auto;        }        .box{            -webkit-transform-style: preserve-3d;            -moz-transform-style: preserve-3d;            -ms-transform-style: preserve-3d;            transform-style: preserve-3d;            transform-origin:100px 100px 00px;            position: relative;            transform: rotatex(0deg) rotatey(0deg) rotatez(0deg)scale3d(0.7,0.7,0.7);        }        .box span{            transition: all 1s linear;        }        span{            display: block;            position: absolute;            width: 200px;            height: 200px;            box-sizing: border-box;            border:1px solid #999;            /*opacity: 0.7;*/            text-align: center;            line-height: 200px;            font-size: 60px;            font-weight: 700;            border-radius: 12%;        }        .box span:nth-child(1){            background-color: deepskyblue;            transform-origin: left;            transform: rotatey(-90deg) translatex(-100px);//左        }        .box span:nth-child(2){            background-color: red;            transform-origin: right;            transform: rotatey(90deg) translatex(100px) ;//右        }        .box span:nth-child(3){            background-color: green;            transform-origin: top;            transform: rotatex(90deg) translatey(-100px) ;//上        }        .box span:nth-child(4){            background-color: #6633FF;            transform-origin: bottom;            transform: rotatex(-90deg) translatey(100px);//下        }        .box span:nth-child(5){            background-color: gold;            transform: translatez(-100px);//后        }        .box span:nth-child(6){            background-color: #122b40;            transform: translatez(100px);//前        }        .box:hover span{            opacity: 0.3;        }        .box:hover{            animation-play-state:paused;//设置动画暂停        }    </style>

  JS代码块:

<script>    move();    clickBox();    //鼠标按下且移动时触发,    function move(){        var body = document.querySelector("body");        var box = document.querySelector(".box");        var xNum =document.querySelector(".xNum");        var yNum =document.querySelector(".yNum");        var x = 0,y = 0,z = 0;        var xx = 0,yy = 0;        var xArr = [],yArr = [];        window.onmousedown = function (e) {//鼠标按下事件            body.style.cursor = 'url("img/closedhand1.png"),auto';            xArr[0] = e.clientX/2;//获取鼠标点击屏幕时的坐标            yArr[0] = e.clientY/2;            window.onmousemove = function (e) {//鼠标移动事件————当鼠标按下且移动时触发                xArr[1] = e.clientX/2;//获取鼠标移动时第一个点的坐标                yArr[1] = e.clientY/2;                yy += xArr[1] - xArr[0];//获得鼠标移动的距离                xx += yArr[1] - yArr[0];                xNum.value = xx+"&deg;";//将所获得距离数字赋值给input显示旋转角度                yNum.value = yy+"&deg;";                //将旋转角度写入transform中                box.style.transform = "rotatex("+xx+"deg) rotatey("+yy+"deg) rotatez(0deg)scale3d(0.7,0.7,0.7)";                xArr[0] = e.clientX/2;                yArr[0] = e.clientY/2;            }        };        window.onmouseup = function () {//鼠标抬起事件————用于清除鼠标移动事件,            body.style.cursor = 'url("img/openhand1.png"),auto';            window.onmousemove = null;        }    }    //点击事件、负责立方体盒子的六面伸展    function clickBox(){        var btn = document.querySelector(".open");        var box = document.querySelector(".box");        var son = box.children;        var value = 0;        //存储立方体散开时的transform参数        var arr0 = ["rotatey(-90deg) translatex(-100px)","rotatey(90deg) translatex(100px)","rotatex(90deg) translatey(-100px)",<br />"rotatex(-90deg) translatey(100px)","translatez(-100px)","translatez(100px)"];        //存储立方体合并时的transform参数        var arr1 = ["rotatey(-90deg) translatex(-100px)translatez(100px)","rotatey(90deg) translatex(100px)translatez(100px)",<br />"rotatex(90deg) translatey(-100px)translatez(100px)","rotatex(-90deg) translatey(100px)translatez(100px)","translatez(-200px)","translatez(200px)"];        btn.onclick = function(){            if(value == 0){                value = 1;                btn.value = "点击合并";                for(var i=0;i<arr1.length;i++){                    son[i].style.transform = arr1[i];                    console.log(son[i])                }            }else if(value == 1){                value = 0;                btn.value = "点击散开";                for(var j=0;j<arr0.length;j++){                    son[j].style.transform = arr0[j];                    console.log(j);                }            }        };    }</script>

  

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Give an example of an HTML tag with an attribute.Give an example of an HTML tag with an attribute.May 16, 2025 am 12:02 AM

The usage methods of HTML tags and attributes include: 1. Basic usage: Use tags such as and, and add necessary information through attributes such as src and href. 2. Advanced usage: Use data-* custom attributes to achieve complex interactions. 3. Avoid common mistakes: Make sure the property values ​​are surrounded by quotes. 4. Performance optimization: Keep it simple, use standard attributes and CSS class names to ensure that the image has alt attributes. Mastering these will improve web development skills.

What is the difference between an HTML tag and an HTML attribute?What is the difference between an HTML tag and an HTML attribute?May 14, 2025 am 12:01 AM

HTMLtagsdefinethestructureofawebpage,whileattributesaddfunctionalityanddetails.1)Tagslike,,andoutlinethecontent'splacement.2)Attributessuchassrc,class,andstyleenhancetagsbyspecifyingimagesources,styling,andmore,improvingfunctionalityandappearance.

The Future of HTML: Evolution and TrendsThe Future of HTML: Evolution and TrendsMay 13, 2025 am 12:01 AM

The future of HTML will develop in a more semantic, functional and modular direction. 1) Semanticization will make the tag describe the content more clearly, improving SEO and barrier-free access. 2) Functionalization will introduce new elements and attributes to meet user needs. 3) Modularity will support component development and improve code reusability.

Why are HTML attributes important for web development?Why are HTML attributes important for web development?May 12, 2025 am 12:01 AM

HTMLattributesarecrucialinwebdevelopmentforcontrollingbehavior,appearance,andfunctionality.Theyenhanceinteractivity,accessibility,andSEO.Forexample,thesrcattributeintagsimpactsSEO,whileonclickintagsaddsinteractivity.Touseattributeseffectively:1)Usese

What is the purpose of the alt attribute? Why is it important?What is the purpose of the alt attribute? Why is it important?May 11, 2025 am 12:01 AM

The alt attribute is an important part of the tag in HTML and is used to provide alternative text for images. 1. When the image cannot be loaded, the text in the alt attribute will be displayed to improve the user experience. 2. Screen readers use the alt attribute to help visually impaired users understand the content of the picture. 3. Search engines index text in the alt attribute to improve the SEO ranking of web pages.

HTML, CSS, and JavaScript: Examples and Practical ApplicationsHTML, CSS, and JavaScript: Examples and Practical ApplicationsMay 09, 2025 am 12:01 AM

The roles of HTML, CSS and JavaScript in web development are: 1. HTML is used to build web page structure; 2. CSS is used to beautify the appearance of web pages; 3. JavaScript is used to achieve dynamic interaction. Through tags, styles and scripts, these three together build the core functions of modern web pages.

How do you set the lang attribute on the  tag? Why is this important?How do you set the lang attribute on the tag? Why is this important?May 08, 2025 am 12:03 AM

Setting the lang attributes of a tag is a key step in optimizing web accessibility and SEO. 1) Set the lang attribute in the tag, such as. 2) In multilingual content, set lang attributes for different language parts, such as. 3) Use language codes that comply with ISO639-1 standards, such as "en", "fr", "zh", etc. Correctly setting the lang attribute can improve the accessibility of web pages and search engine rankings.

What is the purpose of HTML attributes?What is the purpose of HTML attributes?May 07, 2025 am 12:01 AM

HTMLattributesareessentialforenhancingwebelements'functionalityandappearance.Theyaddinformationtodefinebehavior,appearance,andinteraction,makingwebsitesinteractive,responsive,andvisuallyappealing.Attributeslikesrc,href,class,type,anddisabledtransform

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.