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

CSS3绚丽照片墙

Ben 产品经理
难度初级
时长30分
学习人数
综合评分9.57
192人评价 查看评价
9.7 内容实用
9.5 简洁易懂
9.5 逻辑清晰
  • <!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{ color:#000; background:red; -webkit-transform:rotate(720deg)scale(2); -moz-transform:rotate(720deg)scale(2); transform:rotate(720deg)scale(2); } </style> <title>css3特效</title> </head> <body> <div class="mainDiv">您好</div> </body> </html>
    查看全部
    0 采集 收起 来源:编程练习

    2018-03-22

  • transition
    查看全部
  • transition
    查看全部
  • transform
    查看全部
  • css3新属性
    查看全部
  • <!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{ color:#000000; background:red; -webkit-transform:rotate(720deg) scale(2); -moz-transform:rotate(720deg) scale(2); transform:rotate(720deg) scale(2); } </style> <title>css3特效</title> </head> <body> <div class="mainDiv">您好</div> </body> </html>
    查看全部
    0 采集 收起 来源:编程练习

    2018-03-22

  • 关键技术点: 1、box-shadow:阴影 功能:给元素的边框添加阴影的效果 语法:box-shadow:X轴偏移量 Y轴偏移量 [阴影模糊半径][阴影扩展半径][阴影颜色][投影方式] 2、position:给元素定位 功能:给元素定位,主要用到绝对定位 用法:position:absolute与posistion:relative 配合使用实现相对于包含元素(参照元素)定位 3、z-index:设置元素上下层显示顺序 功能:设置元素的上下层显示顺序 语法:Z-index:整数 注意:拥有更高堆叠顺序的元素总是会处于堆叠顺序较低的元素的前面 4、transform:元素变形。rotate(旋转角度)scale(缩放倍数)skew(扭曲元素) 功能:是元素变形的属性,其【配合rotate(旋转角度),scale(缩放倍数),skew(扭曲元素)等参数一起 使用 语法:transform:rotate(旋转角度) transform:scale(缩放倍数) 5、transition设置元素由样式1转变成样式2的过程所需时间。 语法:transition:durantion 注意:这只是transition其中的一种用法
    查看全部
  • 特效实现步骤: 1.放位置各异的照片 2.每张照片给一定旋转角度 3.照片的动画效果(阴影,缓慢旋转,缓慢放大特效)
    查看全部
  • CSS3新特性运用:绚丽照片墙
    查看全部
  • .mainDiv:hover{ background-color:red; color:black; -webkit-transform:rotate(720deg) scale(2); -moz-transform:rotate(720deg) scale(2); transform:rotate(720deg) scale(2); }
    查看全部
    0 采集 收起 来源:编程练习

    2015-06-15

  • <!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; -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{ width:130px; height:130px; background-color:#B9E1EE; color:red; font-weight:bold; border-radius:100px; line-height:130px; -webkit-transform:rotate(720deg) scale(2); -moz-transform:rotate(720deg) scale(2); } </style> <title>css3特效</title> </head> <body> <div class="mainDiv">I ❤ you</div> </body> </html>
    查看全部
    0 采集 收起 来源:编程练习

    2018-03-22

  • box-shadow(给元素的边框添加阴影) 语法: box-shadow: x轴偏移量 y轴偏移量 [阴影模糊半径] [阴影扩展半径] [阴影颜色] [投影方式]
    查看全部
  • 关键技术点: 1、box-shadow:阴影 2、position:给元素定位 3、z-index:设置元素上下层显示顺序 4、transform:元素变形。rotate(旋转角度)scale(缩放倍数)skew(扭曲元素) 5、transition设置元素由样式1转变成样式2的过程所需时间。transition:durantion
    查看全部
  • 旋转特效
    查看全部
    0 采集 收起 来源:编程练习

    2015-06-01

  • transition transform
    查看全部
    0 采集 收起 来源:编程练习

    2015-05-21

举报

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

微信扫码,参与3人拼团

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

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