HTML
CSS
JS
Result
Skip Results Iframe
EDIT ON
Live
Live
Live
This Pen is owned by
Craig Roblewsky
on
CodePen
.
See more by @PointC on CodePen
External CSS
https://use.typekit.net/xlj8lcy.css
External JavaScript
https://s3-us-west-2.amazonaws.com/s.cdpn.io/16327/gsap-latest-beta.min.js
https://s3-us-west-2.amazonaws.com/s.cdpn.io/16327/DrawSVGPlugin3.min.js
{"__browser":{"country":"US","device":"unknown_device","mobile":false,"name":"unknown browser","platform":"unknown_platform","version":"0"},"__constants":{},"__CPDATA":{"domain_iframe":"https://cdpn.io","environment":"production","host":"codepen.io","iframe_allow":"accelerometer; ambient-light-sensor; camera; display-capture; encrypted-media; geolocation; gyroscope; microphone; midi; payment; vr; web-share","iframe_sandbox":"allow-forms allow-modals allow-pointer-lock allow-popups allow-same-origin allow-scripts allow-top-navigation-by-user-activation allow-downloads allow-presentation"},"__graphql":{"data":{"data":null,"errors":[{"message":"Cannot return null for non-nullable field Query.sessionUser"}]},"url":"https://codepen.io/graphql","api":"cprails"},"__pay_stripe_public_key":"pk_live_2GndomDfiklqpSNQn8FrGuwZSMIMzha7DkLJqlYe7IR0ihKAlKdiHg68JJc5eVPt68rzAjzAAVXcUwjySHRCsgjQQ00gtRBUFNH","__pay_braintree_env":"production","__boomboom":{"serve_url":"https://cdpn.io/cpe/boomboom","store_url":"https://codepen.io/cpe/boomboom/store"},"__pageType":"embed","__item":"{\"editor_settings\":{\"auto_run\":true,\"autocomplete\":false,\"code_folding\":true,\"css_pre_processor\":\"none\",\"css_prefix\":\"neither\",\"css_starter\":\"neither\",\"emmet_active\":true,\"font_size\":14,\"font_type\":\"system\",\"format_on_save\":false,\"html_pre_processor\":\"none\",\"indent_with\":\"spaces\",\"js_pre_processor\":\"none\",\"key_bindings\":\"normal\",\"line_numbers\":true,\"line_wrapping\":true,\"match_brackets\":true,\"snippets\":{\"markupSnippets\":{},\"stylesheetSnippets\":{}},\"tab_size\":2,\"theme\":\"twilight\",\"id\":\"rNeQNgw\",\"auto_save\":true},\"hashid\":\"rNeQNgw\",\"itemType\":\"pen\",\"resources\":[{\"url\":\"https://use.typekit.net/xlj8lcy.css\",\"order\":0,\"resource_type\":\"css\",\"par_content\":\"\"},{\"url\":\"https://s3-us-west-2.amazonaws.com/s.cdpn.io/16327/gsap-latest-beta.min.js\",\"order\":0,\"resource_type\":\"js\",\"par_content\":\"\"},{\"url\":\"https://s3-us-west-2.amazonaws.com/s.cdpn.io/16327/DrawSVGPlugin3.min.js\",\"order\":1,\"resource_type\":\"js\",\"par_content\":\"\"}],\"tags\":[],\"id\":47151436,\"user_id\":314556,\"html\":\"<svg xmlns=\\\"http://www.w3.org/2000/svg\\\" width=\\\"1200\\\" height=\\\"600\\\" viewBox=\\\"0 0 1200 600\\\">\\n\\n <path class=\\\"\\\" d=\\\"M600,400H200c-55,0-100-45-100-100h0c0-55,45-100,100-100h800c55,0,100,45,100,100h0c0,55-45,100-100,100Z\\\" stroke=\\\"#333\\\" fill=\\\"none\\\" />\\n <text transform=\\\"translate(600 100)\\\">DrawSVG Multi-Looping</text>\\n <a href=\\\"https://www.motiontricks.com\\\" target=\\\"_blank\\\"><text transform=\\\"translate(600 520)\\\">motiontricks.com</text></a> \\n \\n</svg>\",\"css\":\"body {\\n font-family: \\\"proxima-nova\\\", sans-serif;\\n display: flex;\\n height: 100vh;\\n background: #262626;\\n overflow: hidden;\\n flex-direction: column;\\n justify-content: center;\\n align-items: center;\\n}\\n\\n.target {\\n stroke-miterlimit: 10;\\n stroke-width: 6;\\n fill: none;\\n stroke-linecap: round;\\n}\\n\\nsvg {\\n width: 90vw;\\n height: auto;\\n}\\n\\ntext {\\n text-anchor: middle;\\n font-size: 50px;\\n fill: white;\\n font-family: \\\"proxima-nova\\\", sans-serif;\\n font-weight: 600;\\n}\\n\",\"js\":\"console.clear();\\ngsap.registerPlugin(DrawSVGPlugin);\\nconst svgns = \\\"http://www.w3.org/2000/svg\\\";\\nconst demo = document.querySelector(\\\"svg\\\");\\nconst colorArray = [\\\"#5cceee\\\", \\\"#94c356\\\", \\\"#eae047\\\", \\\"#a63ba0\\\", \\\"#cf5b21\\\"];\\nlet targetCount = 6;\\n\\nfor (let i = 0; i < targetCount; i++) {\\n let newPath = document.createElementNS(svgns, \\\"path\\\");\\n demo.appendChild(newPath);\\n gsap.set(newPath, {\\n attr: {\\n d:\\n \\\"M600,400H200c-55,0-100-45-100-100h0c0-55,45-100,100-100h800c55,0,100,45,100,100h0c0,55-45,100-100,100Z\\\",\\n stroke: colorArray[i % colorArray.length],\\n class: \\\"target\\\"\\n },\\n strokeWidth: 6 + 3 * i\\n });\\n\\n gsap\\n .timeline({ delay: i * 0.15, repeat: -1, repeatDelay: 0.5 })\\n .fromTo(newPath, { drawSVG: 0 }, { drawSVG: \\\"0% 5%\\\", ease: \\\"power3.in\\\" })\\n .to(newPath, { duration: 4, drawSVG: \\\"365% 400%\\\", ease: \\\"none\\\" })\\n .to(newPath, { drawSVG: \\\"400% 400%\\\", ease: \\\"power3\\\" })\\n .timeScale(0.75);\\n}\\n\",\"html_pre_processor\":\"none\",\"css_pre_processor\":\"none\",\"js_pre_processor\":\"none\",\"html_classes\":\"\",\"css_starter\":\"neither\",\"js_library\":null,\"created_at\":\"2020-09-20T16:41:32.000Z\",\"updated_at\":\"2021-01-11T18:57:47.000Z\",\"title\":\"Multicolor/target Looping (New DrawSVG)\",\"description\":\"\",\"slug_hash\":\"rNeQNgw\",\"head\":\"\",\"private\":false,\"has_animation\":true,\"team_id\":0,\"css_prefix\":\"neither\",\"template\":false,\"parent_id\":0,\"comments_count\":0,\"custom_screenshot_filename\":null,\"loves_count\":0,\"pick\":false,\"popularity_score\":0,\"views_count\":0,\"pick_visible_at\":null,\"cpid\":\"0174ac64-5a60-79d2-8a04-6750ff399137\",\"is_new_editor_pen\":false,\"pen_hash\":null}","__processorsMap":{"autoprefixer":"autoprefixer-10","babel":"babel-7","coffeescript":"coffeescript-2","format-1":"format-1","flutter":"flutter-1","haml":"haml-4","less":"less-3","lint-1":"lint-1","livescript":"livescript-1","markdown":"markdown-11","postcss":"postcss-7","pug":"pug-2","sass":"sass-1","scss":"sass-1","sass-ruby-3":"sass-ruby-3","sass-ruby-compass-3":"sass-ruby-compass-3","slim":"slim-3","stylus":"stylus-0","typescript":"typescript-4","vue":"vue-2","vue3":"vue-3"},"__favicon_mask_icon":"https://cpwebassets.codepen.io/assets/favicon/logo-pin-b4b4269c16397ad2f0f7a01bcdf513a1994f4c94b8af2f191c09eb0d601762b1.svg","__favicon_shortcut_icon":"https://cpwebassets.codepen.io/assets/favicon/favicon-aec34940fbc1a6e787974dcd360f2c6b63348d4b1f4e06c77743096d55480f33.ico","__path_to_iframe_console_runner":"https://cpwebassets.codepen.io/assets/editor/iframe/iframeConsoleRunner-6d8bf8b4b479137260842506acbb12717dace0823c023e08b96360e60b0840d9.js","__path_to_iframe_refresh_css":"https://cpwebassets.codepen.io/assets/editor/iframe/iframeRefreshCSS-44fe83e49b63affec96918c9af88c0d80b209a862cf87ac46bc933074b8c557d.js","__path_to_iframe_runtime_errors":"https://cpwebassets.codepen.io/assets/editor/iframe/iframeRuntimeErrors-4f205f2c14e769b448bcf477de2938c681660d5038bc464e3700256713ebe261.js","__path_to_processor_worker":"https://cpwebassets.codepen.io/assets/packs/router.js","__path_to_stop_execution_on_timeout":"https://cpwebassets.codepen.io/assets/common/stopExecutionOnTimeout-2c7831bb44f98c1391d6a4ffda0e1fd302503391ca806e7fcc7b9b87197aec26.js","__pen_normalize_css_url":"https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css","__pen_prefix_free_url":"https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js","__pen_reset_css_url":"https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css","__path_to_infinite_loop_detection":"https://cpwebassets.codepen.io/assets/packs/js/infiniteLoopDetection-f0d5935eb4c2121dfc41.js"}