Skip to main content

Type Alias: FreezeCanvasScrolling()

FreezeCanvasScrolling = () => Promise<void>

Function

Disables scrolling and zooming interactions on the 3D view.

This action prevents users from accidentally changing the camera position through scroll or pinch gestures. It's useful when you want to maintain a specific product view or when the 3D model is displayed in a scrollable page where normal scrolling should move the page, not zoom the product.

Business value:

  • Maintains consistent product views in presentations or guided experiences
  • Prevents accidental zoom changes when scrolling through product pages
  • Creates a more controlled viewing experience on touch devices
  • Allows for custom zoom controls that match your interface design

Returns

Promise<void>

Example

// Freeze camera position when entering presentation mode
document.getElementById('enter-presentation').addEventListener('click', () => {
window.mimeeqApp.actions.freezeCanvasScrolling();
});