Socket
Socket
Sign inDemoInstall

hyperdom-interactjs

Package Overview
Dependencies
Maintainers
3
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hyperdom-interactjs

multi-touch gestures for hyperdom using interact.js


Version published
Weekly downloads
0
decreased by-100%
Maintainers
3
Weekly downloads
 
Created
Source

hyperdom-interactjs

Use interact.js through hyperdom.

Demo

Example

function render(model) {
  return h('.page',
    interact('.red', {
        binding: [model, 'animal'],
        draggable: true
      },
      'Animal'
    ),
    interact('.green', {
        binding: [model, 'vegetable'],
        draggable: {
          snap: { targets: [ interact.createSnapGrid({ x: 20, y: 20 }) ] }
        }
      },
      'Vegetable'
    ),
    interact('.blue', {
        binding: [model, 'mineral'],
        draggable: { inertia: true },
        rotatable: true,
        scalable: true,
        withDraggable: function(draggable) {
          draggable.on('move', function() {
            model.mineral.moves++;
          });
        },
        withGesturable: function(gesturable) {
          gesturable.on('move', function() {
            model.mineral.gestures++;
          });
        }
      },
      'Mineral'
    ),
    interact.dropzone({
      accept: '*',
      overlap: 0.5,
      ondrop: function(event) {
        event.target.style.backgroundColor = 'purple';
      }
    }, h('.bucket', 'Bucket')),
    interact('.object-container', {
        binding: [model, 'restricted'],
        draggable: {
          restrict: {
            restriction: 'parent',
            endOnly: true,
            elementRect: { top: 0, left: 0, bottom: 1, right: 1 }
          }
        },
        resizable: {
          edges: { left: true, right: true, bottom: true, top: true }
        },
        rotatable: true,
        scalable: true
      },
      h('.pink', 'Restricted')
    ),
    h('.scaled-container.js-interact-scaled-container', {
      style: { transform: 'scale(1.6)' }
    },
      interact('.pink', {
          binding: [model, 'scaledContainer'],
          draggable: {
            restrict: {
              restriction: 'parent',
              endOnly: true,
              elementRect: { top: 0, left: 0, bottom: 1, right: 1 }
            }
          },
          resizable: {
            preserveAspectRatio: true,
            edges: { left: true, right: true, bottom: true, top: true }
          },
          rotatable: true,
          scalable: true
        },
        'Scaled'
      )
    ),
    interact('.turquoise', {
        binding: [model, 'resizable'],
        draggable: true,
        resizable: {
          preserveAspectRatio: true,
          edges: { left: true, right: true, bottom: true, top: true }
        },
        rotatable: true,
        scalable: true
      },
      'Resizable'
    ),
    h('pre', JSON.stringify(model, null, 2))
  );
}

var model = {
  animal:     { x: 0,  y: 0, scale: 1.1, rotation: 1 },
  vegetable:  { x: 30, y: 0, scale: 1.0, rotation: 0 },
  mineral:    { x: 60, y: 0, scale: 1.1, rotation: -3, moves: 0, gestures: 0 },
  restricted: { x: 30, y: 0, scale: 1.0, rotation: 0 },
  scaledContainer:  { x: 30, y: 0, scale: 1.2, rotation: 0 },
  resizable:  { x: 600, y: -400, scale: 2.0, rotation: 0 }
}

Additional Features

  • Adding .js-interact-scaled-container to a scaled container around the elements will fix the dragging/resizing issue.

  • Passing an onbeforechange option will allow for normalization and validation of the transform before its value updates. This is useful for implementing certain application-specific constraints (e.g. minimum or maximum size).

interact('.constrained', {
  binding: [model, 'transform'],
  resizable: true,

  onbeforechange: function(transform) {
    transform.width = Math.max(100, transform.width); // enforce a minimum width of 100
    return transform;
  }
})

Keywords

FAQs

Package last updated on 12 Apr 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc