HTML5技术

H5图像遮罩-遁地龙卷风 - 遁地龙卷风

字号+ 作者:H5之家 来源:H5之家 2016-09-24 18:00 我要评论( )

(-1)写在前面 这个idea不是我的,向这位前辈致敬。我用的是chrome49。用到的图片资源在我的百度云盘里?shareid=1970396223uk=1302053889 代码不能运行,说明你的浏览器版本不够高,加上对应浏览器前缀,还不行,浏览器不支持。 这个案例给了我很大启迪,从分

(-1)写在前面

这个idea不是我的,向这位前辈致敬。我用的是chrome49。用到的图片资源在我的百度云盘里?shareid=1970396223&uk=1302053889

代码不能运行,说明你的浏览器版本不够高,加上对应浏览器前缀,还不行,浏览器不支持。

这个案例给了我很大启迪,从分析案例使用了什么属性、在到如何实现,最后还是看了源代码才做到一模一样。

 (1)知识预备 a.transform-origin   

transform-origin: x-axis y-axis z-axis;

x-axis取值为例left 、center 、right 、length 、%,默认center即50%,指的时x轴坐标原点相对于元素宽的位置

y-axis取值为例top 、center 、bottom 、length ,%默认center即50%,指的时y轴坐标原点相对于元素高的位置

 

个人感觉将x-axis、y-axis的取值对换会更好,就可以有这样的理解:在left画y轴,在center画x轴,那么两轴的交点就是坐标轴原点了

b.过渡与转换的结合使用

transition-duration:500ms;

transform:rotate(0deg)

元素旋转到0度用时500ms

c. #lol:hover p:nth-child(2)

当鼠标放在id为lol的元素A上时,在A所有的子元素中如果第二个是p元素则匹配成功。

d.关键代码

#lol:hover p:nth-child(2)/*鼠标放在p元素上时触发*/

      {

           transform:rotate(0deg)

           /*等价于transform:translate(0px,0px) rotate(0deg) 不要忘记默认属性*/

           /* transition-duration:500ms;transform-origin:right bottom;不写也是一样的,因为#lol p:nth-child(2)设置了*/

      }

      #lol p:nth-child(2)/*浏览器显示p元素时执行*/

      {

           transition-duration:500ms;

           transform-origin:right bottom;

           transform:rotate(90deg);

           …

      }

(2)全部代码

<!DOCTYPE html>

<html lang="en">

<head>

<meta charset=utf-8>

<link href="favicon.ico" type="image/x-icon">

<title>为了生活</title>

<style type="text/css">

      *

      {

           margin:0px;

           padding:0;

      }

      #lol

      {

           width:222px;

           height:221px;

           position:relative;

           overflow:hidden;

           cursor:pointer;

           margin:20px auto;

           border:10px #333 solid;

     

      }

      #lol:hover p:nth-child(2)

      {

           transform:rotate(0deg)

      }

      #lol p:nth-child(2)

      {

           width:222px;

           height:221px;

           position:absolute;

           transition-duration:500ms;

           transform-origin:right bottom;

           transform:rotate(90deg);

           background:orange;

           top:0px;

           left:0px;

      }

</style>    

</head

<body>

      <div>

           <img src="images/1.jpg">

           <p>Hello World</p>

      </div>

</body>              

</html>                 

                        

                         

 

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

相关文章
  • H53D旋转-遁地龙卷风 - 遁地龙卷风

    H53D旋转-遁地龙卷风 - 遁地龙卷风

    2016-09-23 14:00

  • canvas对象arc函数的使用-遁地龙卷风 - 遁地龙卷风

    canvas对象arc函数的使用-遁地龙卷风 - 遁地龙卷风

    2016-09-07 15:00

  • canvas对象arcTo函数的使用-遁地龙卷风 - 遁地龙卷风

    canvas对象arcTo函数的使用-遁地龙卷风 - 遁地龙卷风

    2016-09-07 10:00

  • CSS3计数器的使用-遁地龙卷风 - 遁地龙卷风

    CSS3计数器的使用-遁地龙卷风 - 遁地龙卷风

    2016-08-19 12:00

网友点评