HTML与CSS中2D转换模块怎么用
这篇文章主要介绍“HTML与CSS中2D转换模块怎么用”,在日常操作中,相信很多人在HTML与CSS中2D转换模块怎么用问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”HTML与CSS中2D转换模块怎么用”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!
一.2D转换模块
2D转换模块
transform:rotate(45deg);transform:translate(100px,0px);transform:scale(1.5);transform:rotate(45deg)translate(100px,0px);
2D转换模块
1.png
二.2D转换模块-形变中心点
默认情况下所有的元素都是以自己的中心点作为参考来旋转的,我们可以通过形变中心点属性来修改它的参考点
transform-origin:lefttop;
2.png
三.透视属性(perspective:500px;)和旋转轴向(transform:rotateY(45deg);)
1.perspective:500px;
1.1什么是透视
近大远小
1.2.注意点
一定要注意,透视属性必须添加到需要呈现近大远小效果的元素的父元素上面
2.transform:rotateY(45deg);
想围绕哪个轴旋转,那么只需要在rotate后面加上哪个轴即可;
代码示例:
<htmllang="en"><head>
<metacharset="UTF-8">
<title>95-2D转换模块-旋转轴向</title>
<style>
*{margin:0;padding:0;}
ul{width:800px;height:500px;margin:0auto;}
ulli{list-style:none;width:200px;height:200px;margin:0auto;margin-top:50px;border:1pxsolid#000;
perspective:500px;}ulliimg{width:200px;height:200px;
}ulli:nth-child(1){
transform:rotateZ(45deg);}ulli:nth-child(2)img{transform:rotateX(45deg);}ulli:nth-child(3)img{transform:rotateY(45deg);}</style></head><body><ul><li>![](images/rotateZ.jpg)</li><li>![](images/rotateX.jpg)</li><li>![](images/rotateY.jpg)</li></ul></body></html>
3.png
四.扑克牌练习
<htmllang="en">
<head>
<metacharset="UTF-8">
<title>96-2D转换模块-练习</title>
<style>
*{margin:0;padding:0;}
p{width:310px;height:438px;border:1pxsolid#000;
background-color:skyblue;margin:100pxauto;perspective:500px;}
pimg{transform-origin:centerbottom;transition:transform1s;}
p:hoverimg{transform:rotateX(80deg);}
</style></head><body><p>![](images/pk.png)</p>
</body>
</html>
4.gif
五.照片墙
<htmllang="en">
<head>
<metacharset="UTF-8">
<title>97-2D转换模块-相片墙</title>
<style>
*{margin:0;padding:0;}
ul{height:400px;border:1pxsolid#000;
background-color:skyblue;margin-top:100px;
text-align:center;}
ulli{list-style:none;
width:150px;height:200px;
background-color:red;display:inline-block;
//转换成行内块级元素,用于水平排版
margin-top:100px;transition:all1s;
position:relative;box-shadow:0010px;}
ulli:nth-child(1){transform:rotate(30deg);}
ulli:nth-child(2){transform:rotate(-40deg);}
ulli:nth-child(3){transform:rotate(10deg);}
ulli:nth-child(4){transform:rotate(45deg);}
ulliimg{width:150px;height:200px;
border:5pxsolid#fff;box-sizing:border-box;
}
ulli:hover{
transform:scale(1.5);
//之前的旋转被层叠掉,只执行放大
z-index:998;
//显示在最上面
}
</style>
</head>
<body>
<ul>
<li>![](images/1.jpg)</li>
<li>![](images/2.jpg)</li>
<li>![](images/3.jpg)</li>
<li>![](images/4.jpg)</li>
</ul>
</body>
</html>
到此,关于“HTML与CSS中2D转换模块怎么用”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注编程网网站,小编会继续努力为大家带来更多实用的文章!
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341