TweenMax实现鼠标横向位置控制伞打开飞走效果代码

代码语言:html

所属分类:动画

代码描述:TweenMax实现鼠标横向位置控制伞打开飞走效果代码

代码标签: 横向 位置 控制 打开 飞走 效果

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html lang="en">

<head>

   
<meta charset="UTF-8">



   
<style>
        body
{
           
background-color: #578BAA;
           
overflow: hidden;
       
}
        body
, html {
           
height: 100%;
           
width: 100%;
           
margin: 0;
           
padding: 0;
       
}

       
.container {
         
           
width: 100vw;

           
height: 100vh;

           
display: flex;
           
align-content: center;
           
justify-content: center;
       
}

        svg
{
           
position: absolute;
           
left: 0%;
           
visibility: hidden;

       
}
       
        h1
{
           
font-size: 20px;

       
}
        h2
{
           
font-size: 15px;
           
width: 96%;
           
font-weight: normal;
       
}

        span
{
           
font-style: italic;
       
}
        a
{
           
color: #FFF;
           
font-weight: 700;
       
}
        ul
{
           
margin-top: 0;
           
padding-left: 15px;
           
width: 80%;
       
}
       
.update {
           
color: #FFDC7B;
       
}
   
</style>



</head>

<body>
   
<div class="container">
       
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In  -->
       
<svg version="1.1"
           
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
           
x="0px" y="0px" width="600px" height="600px" viewBox="0 0 600 600" enable-background="new 0 0 600 600" xml:space="preserve">
           
<defs>
           
</defs>
           
<g class="wholeUmbrella">
               
<g class="tipGroup">
                   
<line class="thinTip" fill="none" stroke="#44434F" stroke-width="2" stroke-linecap="round" stroke-miterlimit="10" x1="300" y1="211.7" x2="300" y2="193.2" />
                   
<line class="fatTip" fill="none" stroke="#F3E5C8" stroke-width="4" stroke-linecap="round" stroke-miterlimit="10" x1="300" y1="211.7" x2="300" y2="205.2" />
               
</g>

                <path class="handle" fill="none&q.........完整代码请登录后点击上方下载按钮下载查看

网友评论0