为了账号安全,请及时绑定邮箱和手机立即绑定

CSS3绚丽照片墙

Ben 产品经理
难度初级
时长30分
学习人数
综合评分9.57
192人评价 查看评价
9.7 内容实用
9.5 简洁易懂
9.5 逻辑清晰
  • z-index:元素上下层显示顺序
    查看全部
  • position:元素位置定位。主要使用绝对定位
    查看全部
  • box-shadow 阴影制作
    查看全部
  • 使用padding和背景色进行边框的添加
    查看全部
  • transform:rotate(30deg); 顺时针旋转30° transform:scale(1.2); 放大1.2倍 transition:1s; 动画从样式1到样式2的时间 box-shadow: 10px 11px 12px 13px #ccc; 盒子阴影 -webkit- 谷歌内核 -moz- 火狐内核 .container{width:960px;height:450px;margin:60px suto; position:relative;} img{padding:10px 10px 15px; background-color:#fff; border:1px solid #ddd;position:absolute; top:50px;left:200px;transform:rotate(20deg);-webkit-transform:rotate(20deg); -moz-transform:rotate(20deg) ;transition:1s ; -webkit-transition:1s ; -moz-transition:1s ; cursor:pointer;z-index:1; } img:hover{transform:rotate(0deg);-webkit-transform:rotate(0deg); -moz-transform:rotate(0deg) ; transform:scale(1.2);-webkit-transform:scale(1.2);-moz-transform:scale(1.2); box-shadow:2px 2px 2px #ccc;-webkit-box-shadow:2px 2px 2px #ccc;-moz-box-shadow:2px 2px 2px #ccc;z-index:100; }
    查看全部
  • transform:rotate(30deg); 顺时针旋转30° transform:scale(1.2); 放大1.2倍 transition:1s; 动画从样式1到样式2的时间 box-shadow: 10px 11px 12px 13px #ccc; 盒子阴影 -webkit- 谷歌内核 -moz- 火狐内核
    查看全部
  • box-shadow 给元素的边框添加阴影的效果 position 给元素定位,主要用到绝对定位 z-index 设置元素 的上下层显示顺序 transform 使元素变形的属性 transition设置元素由样式1转变为样式2的过程
    查看全部
  • 制作步骤: 每张照片的位置不一样 每张照片有一定的旋转角度 照片阴影及缓慢旋转、缓慢放大的特效制作
    查看全部
  • CSS3中的transform: transform.rotate(旋转角度); transform.scale(缩放倍数); transform.skew(扭曲元素);
    查看全部
  • -webkit-transform:rotate(0deg) scale(1); -moz-transform:rotate(0deg) scale(1); transform:rotate(0deg) scale(1); -webkit-transition:2s; -moz-transition:2s; transition:2s;
    查看全部
    0 采集 收起 来源:编程练习

    2015-09-12

  • <!DOCTYPE html> <html lang="zh-CN"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <style> .mainDiv{ width:100px; height:100px; margin:100px auto; text-align: center; line-height: 100px; font-weight: bold; color:#ddd; background:#ddd; border:1px solid #ddd; -webkit-transform:rotate(0deg) scale(1); -moz-transform:rotate(0deg) scale(1); transform:rotate(0deg) scale(1); -webkit-transition:2s; -moz-transition:2s; transition:2s; } .mainDiv:hover{ -webkit-transform:rotate(720deg) scale(1.2); -moz-transform:rotate(720deg) scale(1.2); transform:rotate(720deg) scale(1.2); -webkit-transition:ease-in; -moz-transition:ease-in; transition:ease-in; background:red; } </style> <title>css3特效</title> </head> <body> <div class="mainDiv">您好</div> </body> </html>
    查看全部
    0 采集 收起 来源:编程练习

    2018-03-22

  • CSS3旋转特效 <style> .mainDiv{ width:100px; height:100px; margin:100px auto; text-align: center; line-height: 100px; font-weight: bold; color:#ddd; background:#ddd; border:1px solid #ddd; -webkit-transform:rotate(0deg) scale(1); -moz-transform:rotate(0deg) scale(1); transform:rotate(0deg) scale(1); -webkit-transition:1s; -moz-transition:1s; transition:1s; } .mainDiv:hover{ background:red; color:black; -webkit-transform:rotate(720deg) scale(2); -moz-transform:rotate(720deg) scale(2); transform:rotate(720deg) scale(2); } </style>
    查看全部
    0 采集 收起 来源:编程练习

    2018-03-22

  • 制作步骤
    查看全部
  • 关键技术点
    查看全部
  • 关键技术点
    查看全部

举报

0/150
提交
取消
课程须知
本课程适合对CSS3感兴趣的初学者,通过简单绚丽的案例来熟悉重要的部分CSS3动画属性。
老师告诉你能学到什么?
1、简单CSS3实现任意设置元素的旋转角度。 2、简单CSS3实现图片的等比缩放。 3、利用CSS3将元素的样式变化以动画的方式展现出来。

微信扫码,参与3人拼团

意见反馈 帮助中心 APP下载
官方微信
友情提示:

您好,此课程属于迁移课程,您已购买该课程,无需重复购买,感谢您对慕课网的支持!