通过原生JS,点击事件,鼠标按下、鼠标抬起和鼠标移动事件,实现3d立方体的拖动旋转,并将旋转角度实时的反应至界面上显示。
实现原理:通过获取鼠标点击屏幕时的坐标和鼠标移动时的坐标,来获得鼠标在X轴、Y轴移动的距离,将距离实时赋值给transform属性
从而通过改变transform:rotate属性值来达到3d立方体旋转的效果
HTML代码块:
<body> <input type="button" class="open" value="点击散开"/> <input type="text" class="xNum" value=""/>//X轴旋转角度 <input type="text" class="yNum" value=""/>//Y轴旋转角度 <input type="text" class="zNum"/> <div class="big_box"> <div class="box"> <span></span> <span></span> <span></span> <span></span> <span></span> <span></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+"°";//将所获得距离数字赋值给input显示旋转角度 yNum.value = yy+"°"; //将旋转角度写入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>
以上所述是小编给大家介绍的基于css3新属性transform及原生js实现鼠标拖动3d立方体旋转 的相关知识,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
暂无“基于css3新属性transform及原生js实现鼠标拖动3d立方体旋转”评论...
P70系列延期,华为新旗舰将在下月发布
3月20日消息,近期博主@数码闲聊站 透露,原定三月份发布的华为新旗舰P70系列延期发布,预计4月份上市。
而博主@定焦数码 爆料,华为的P70系列在定位上已经超过了Mate60,成为了重要的旗舰系列之一。它肩负着重返影像领域顶尖的使命。那么这次P70会带来哪些令人惊艳的创新呢?
根据目前爆料的消息来看,华为P70系列将推出三个版本,其中P70和P70 Pro采用了三角形的摄像头模组设计,而P70 Art则采用了与上一代P60 Art相似的不规则形状设计。这样的外观是否好看见仁见智,但辨识度绝对拉满。
更新动态
2024年11月14日
2024年11月14日
- 梅艳芳.1994-是这样的(金碟版)【华星】【WAV+CUE】
- 张学友《真情流露》HQ+S纯银深度[低速原抓WAV+CUE]
- 江志丰2012-七天[豪记][WAV+CUE]
- 黑鸭子2003《聆听柔情HQCD》[日本版][WAV+CUE]
- 群星《奔赴!万人现场 第5期》[FLAC/分轨][587.07MB]
- 关大洲《国家宝藏 第四季原声音乐 关大洲作品》[320K/MP3][109.49MB]
- 关大洲《国家宝藏 第四季原声音乐 关大洲作品》[FLAC/分轨][527.23MB]
- LOL双城之战大乱斗什么时候更新 双城大乱斗上线更新时间介绍
- s14全球总决赛冠军皮肤有什么 2024T1冠军皮肤选择一览
- faker加里奥s14决赛什么出装 faker加里奥s14决赛出装介绍
- 《马里奥与路易吉RPG:兄弟齐航》Fami通34分:路易吉存在感拉满
- 数据挖掘者新发现:NS继任机型或支持4K分辨率
- 宫本茂谈任天堂未来:研发费用增加但注重创意与传承
- 陈小云.2000-餐厅综艺金榜【海丽唱片】【WAV+CUE】
- 卓文萱.2008-翻滚吧!蛋炒饭电视原声带【滚石】【FLAC分轨】