HTML
CSS
JS
Result
Skip Results Iframe
EDIT ON
Live
Live
Live
This Pen is owned by
Klaas Nienhuis
on
CodePen
.
See more by @klaasnienhuis on CodePen
External CSS
https://codepen.io/klaasnienhuis/pen/eYXKXJr/b1f68cd57aafb94914a3dcf38c1403f9.css
External JavaScript
https://static.sketchfab.com/api/sketchfab-viewer-1.11.0.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 *; serial *; xr-spatial-tracking *","iframe_sandbox":"allow-downloads allow-forms allow-modals allow-pointer-lock allow-popups-to-escape-sandbox allow-popups allow-presentation allow-same-origin allow-scripts allow-top-navigation-by-user-activation"},"__graphql":{"data":{"errors":[{"message":"Cannot return null for non-nullable field Query.sessionUser"}],"data":null},"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\":false,\"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\":true,\"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\":\"jOdNZEO\",\"auto_save\":false},\"hashid\":\"jOdNZEO\",\"itemType\":\"pen\",\"resources\":[{\"url\":\"https://static.sketchfab.com/api/sketchfab-viewer-1.11.0.js\",\"order\":0,\"resource_type\":\"js\",\"par_content\":\"\"},{\"url\":\"https://codepen.io/klaasnienhuis/pen/eYXKXJr/b1f68cd57aafb94914a3dcf38c1403f9.css\",\"order\":0,\"resource_type\":\"css\",\"par_content\":\"\"}],\"tags\":[\"sketchfab\",\"api\",\"viewerapi\",\"3d\"],\"id\":71174929,\"user_id\":2407400,\"html\":\"<div class=\\\"sidebar\\\">\\n <button id=\\\"linear\\\">Linear</button>\\n <button id=\\\"ease\\\">Ease in-out</button>\\n</div>\\n<div class=\\\"devfab-label\\\"><a href=\\\"https://www.devfab.io\\\">devfab.io</a> tutorial by Klaas Nienhuis</div>\\n<iframe id=\\\"api-frame\\\"></iframe>\",\"css\":\"html,\\nbody {\\n padding: 0;\\n margin: 0;\\n width: 100vw;\\n height: 100vh;\\n overflow: hidden;\\n}\\niframe {\\n width: 100%;\\n height: 100%;\\n border: 0;\\n}\\n.sidebar {\\n position: absolute;\\n width: 180px;\\n left: 0px;\\n top: 0px;\\n padding: 20px;\\n text-align: left;\\n display: flex;\\n flex-direction: column;\\n pointer-events: none;\\n}\\ndiv.sidebar button {\\n pointer-events: all;\\n margin-bottom: 8px;\\n height: 40px;\\n}\\n\",\"js\":\"let scenematerials = [];\\nlet step = 100;\\nlet direction = -1;\\nlet intervalID = null;\\nlet api = null;\\n\\nconst setOpacity = (value) => {\\n // snapping the opacity value to 1 avoids general yankiness\\n if (value > 0.9999) value = 1;\\n scenematerials.forEach((material) => {\\n material.channels.Opacity.enable = true;\\n material.channels.Opacity.factor = value;\\n api.setMaterial(material);\\n });\\n};\\n\\nconst stepInterval = () => {\\n step += direction;\\n if (step < 0) {\\n direction = 1;\\n step = 0;\\n clearInterval(intervalID);\\n } else if (step > 100) {\\n direction = -1;\\n step = 100;\\n clearInterval(intervalID);\\n }\\n};\\n\\nconst easeInOut = (x) => {\\n return x < 0.5 ? 16 * x * x * x * x * x : 1 - Math.pow(-2 * x + 2, 5) / 2;\\n};\\n\\nconst setOpacityLinear = () => {\\n setOpacity(step / 100);\\n stepInterval();\\n};\\n\\nconst setOpacityInOut = () => {\\n setOpacity(easeInOut(step / 100));\\n stepInterval();\\n};\\n\\nconst success = (_api) => {\\n api = _api;\\n api.addEventListener(\\\"viewerready\\\", function () {\\n api.getMaterialList((err, materials) => {\\n scenematerials = materials;\\n });\\n document.getElementById(\\\"linear\\\").addEventListener(\\\"click\\\", (event) => {\\n intervalID = setInterval(setOpacityLinear, 20);\\n });\\n document.getElementById(\\\"ease\\\").addEventListener(\\\"click\\\", (event) => {\\n intervalID = setInterval(setOpacityInOut, 20);\\n });\\n });\\n};\\n\\nconst loadSketchfab = (sceneuid, elementId) => {\\n const iframe = document.getElementById(elementId);\\n const client = new Sketchfab(\\\"1.12.1\\\", iframe);\\n\\n client.init(sceneuid, {\\n success: success,\\n error: () => console.error(\\\"Sketchfab API error\\\"),\\n autostart: 0,\\n ui_controls: 0,\\n ui_infos: 0,\\n ui_watermark: 0,\\n ui_stop: 0\\n });\\n};\\n\\nloadSketchfab(\\\"c5744bdd5aa248d58aa8cf91fa2ea92a\\\", \\\"api-frame\\\");\\n\",\"html_pre_processor\":\"none\",\"css_pre_processor\":\"none\",\"js_pre_processor\":\"none\",\"html_classes\":\"\",\"css_starter\":\"neither\",\"js_library\":null,\"created_at\":\"2023-10-20T09:39:57.672Z\",\"updated_at\":\"2024-02-06T09:06:04.482Z\",\"title\":\"Sketchfab Materials - interpolation setInterval\",\"description\":\"Load a 3D Sketchfab model of a skull. Open and close the jaw when you drag a slider. And change the post processing at the same time.\",\"slug_hash\":\"jOdNZEO\",\"head\":\"\",\"private\":true,\"slug_hash_private\":\"20bd2322c3c3111ec7f51faf9be38e96\",\"has_animation\":true,\"team_id\":0,\"css_prefix\":\"neither\",\"template\":false,\"parent_id\":28789574,\"comments_count\":0,\"custom_screenshot_filename\":null,\"loves_count\":0,\"pick\":false,\"popularity_score\":0,\"views_count\":0,\"pick_visible_at\":null,\"cpid\":\"018b4c74-b068-7f9f-ac81-d1a2ed2844ff\",\"is_new_editor_pen\":false,\"protected\":false,\"access\":\"Private\",\"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-22d4d33aab19e5279e72.js"}