Skip to content

Instantly share code, notes, and snippets.

@CodeMyUI
Created November 9, 2017 10:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CodeMyUI/1a3a6db61261b5f11f2b532e0f6bce9d to your computer and use it in GitHub Desktop.
Save CodeMyUI/1a3a6db61261b5f11f2b532e0f6bce9d to your computer and use it in GitHub Desktop.
Sushi Toggle
<svg class="sushiSVG" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 800 600">
<defs>
<clipPath id="salmonMask">
<rect class="salmonMask" x="261.5" y="246" width="101" height="106" rx="20" ry="20" fill="red"/>
</clipPath>
</defs>
<title>sushi_toggle3</title>
<!-- <rect width="100%" height="100%" fill="#0CB2E3"/> -->
<path class="shadow" d="M943.5,583c0,18.26,2,94.51-.7,113.64C937.94,731,908.27,755.12,874.26,756c-10.49.27-196.39,2.4-278.61,0-41.25-1.2-72.27-43.66-99.88-71.27l-276.5-276.5c-2.41-2.41-4.77-4.91-7.25-7.25,25.14,24.88,60.9,20,93.12,20,44.49,0,198.12.21,230.44,0,20.47-.13,39.53-6.41,53.93-21.58,15.76-16.61,19-37,19-58.79v-72c0-25.44-.64-49.51-20-69.1,22.74,24.16,277.67,277.67,301.25,301.25C913,524,943.5,547.24,943.5,583Z" fill="#333" opacity="0.23"/>
<rect class="seaweed" x="191.5" y="179" width="417" height="242" rx="69" ry="69" fill="#333"/>
<rect class="rice" x="216.5" y="203.5" width="191" height="191" rx="43" ry="43" fill="#EFE9F4"/>
<g class="salmon">
<rect class="salmonBase" x="261.5" y="246" width="101" height="106" rx="20" ry="20" fill="#ff6b6c"/>
<g clip-path="url(#salmonMask)">
<g class="salmonLines">
<line x1="183" y1="321.5" x2="422" y2="197.5" fill="none" stroke="#ffa1a2" stroke-miterlimit="10" stroke-width="4"/>
<line x1="183" y1="351.5" x2="422" y2="227.5" fill="none" stroke="#ffa1a2" stroke-miterlimit="10" stroke-width="4"/>
<line x1="183" y1="381.5" x2="422" y2="257.5" fill="none" stroke="#ffa1a2" stroke-miterlimit="10" stroke-width="4"/>
<line x1="183" y1="411.5" x2="422" y2="287.5" fill="none" stroke="#ffa1a2" stroke-miterlimit="10" stroke-width="4"/>
<line x1="183" y1="441.5" x2="422" y2="317.5" fill="none" stroke="#ffa1a2" stroke-miterlimit="10" stroke-width="4"/>
<line x1="183" y1="291.5" x2="422" y2="167.5" fill="none" stroke="#ffa1a2" stroke-miterlimit="10" stroke-width="4"/>
</g>
</g>
<rect class="salmonEdge" x="261.5" y="246" width="101" height="106" rx="20" ry="20" fill="transparent" stroke="#519869" stroke-width="0"/>
</g>
<rect class="hit" x="191.5" y="179" width="417" height="242" rx="69" ry="69" fill="transparent"/>
</svg>
var xmlns = "http://www.w3.org/2000/svg",
xlinkns = "http://www.w3.org/1999/xlink",
select = function(s) {
return document.querySelector(s);
},
selectAll = function(s) {
return document.querySelectorAll(s);
},
sushiSVG = select('.sushiSVG'),
hit = select('.hit'),
sushiShadowEnd = "M843.5,583c0,18.26,2,94.51-.7,113.64C837.94,731,808.27,755.12,774.26,756c-10.49.27-26.39,2.4-108.61,0-41.25-1.2-72.27-43.66-99.88-71.27-19.42-19.42-247.08-257.08-266.5-276.5-2.41-2.41-4.77-4.91-7.25-7.25,25.14,24.88,60.9,20,93.12,20,44.49,0,28.12.21,60.44,0,20.47-.13,39.53-6.41,53.93-21.58,15.76-16.61,19-37,19-58.79v-72c0-25.44-.64-49.51-20-69.1,22.74,24.16,267.67,277.67,291.25,301.25C813,524,843.5,547.24,843.5,583Z"
TweenMax.set('svg', {
visibility: 'visible'
})
var tl = new TimelineMax({paused:true}).timeScale(4);
tl.to('.seaweed', 1, {
attr:{
width:239
},
x:89,
ease:Power2.easeIn
})
.to('.seaweed', 1, {
attr:{
width:417
},
x:0,
ease:Power2.easeOut
})
.to('.shadow', 1, {
morphSVG:sushiShadowEnd,
ease:Power2.easeIn,
repeat:1,
yoyo:true
},'-=2')
.staggerTo(['.rice','.salmon'], 2, {
x:178,
ease:Power2.easeInOut
},0.05,'-=2')
.staggerTo('.salmonLines line', 2, {
x:10,
cycle:{
y:[-80, -20, 0, -20 ,-100],
rotation:[0,0,0,45, 45]
},
strokeWidth:4,
transformOrigin:'50% 50%',
stroke:'#75B78C',
ease:Power2.easeInOut
},0,'-=2')
.to('.salmonBase', 2, {
fill:'#57A773',
ease:Power2.easeInOut
},'-=2')
.to('.salmonEdge', 2, {
strokeWidth:6,
ease:Power2.easeInOut
},'-=2')
.to(['.salmonEdge','.salmonMask', '.salmonBase'], 2, {
attr:{
rx:60,
ry:60
},
ease:Power2.easeInOut
},'-=2')
.addPause()
.to('.seaweed', 1, {
attr:{
width:239
},
x:89,
ease:Power2.easeIn
})
.to('.seaweed', 1, {
attr:{
width:417
},
x:0,
ease:Power2.easeOut
})
.to('.shadow', 1, {
morphSVG:sushiShadowEnd,
ease:Power2.easeIn,
repeat:1,
yoyo:true
},'-=2')
.staggerTo(['.rice','.salmon'], 2, {
x:0,
ease:Power2.easeInOut
},0.05,'-=2')
.staggerTo('.salmonLines line', 2, {
x:0,
cycle:{
y:[0],
rotation:[0]
},
strokeWidth:4,
transformOrigin:'50% 50%',
stroke:'#ffa1a2',
ease:Power2.easeInOut
},0,'-=2')
.to('.salmonBase', 2, {
fill:'#ff6b6c',
ease:Power2.easeInOut
},'-=2')
.to('.salmonEdge', 2, {
strokeWidth:0,
ease:Power2.easeInOut
},'-=2')
.to(['.salmonEdge','.salmonMask', '.salmonBase'], 2, {
attr:{
rx:20,
ry:20
},
ease:Power2.easeInOut
},'-=2')
hit.onclick = function(e){
if(tl.progress() == 1){
tl.play(0)
} else {
tl.play()
}
}
//ScrubGSAPTimeline(tl);
<script src="//cdnjs.cloudflare.com/ajax/libs/gsap/1.20.3/TweenMax.min.js"></script>
<script src="//s3-us-west-2.amazonaws.com/s.cdpn.io/16327/MorphSVGPlugin.min.js"></script>
body {
background-color:#0CB2E3;
overflow: hidden;
text-align:center;
}
body,
html {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
}
svg{
width:100%;
height:100%;
visibility:hidden;
-webkit-tap-highlight-color:transparent;
}
.hit{
cursor:pointer;
-webkit-tap-highlight-color:transparent;
}
.shadow{
mix-blend-mode:multiply;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment