react-planner icon indicating copy to clipboard operation
react-planner copied to clipboard

Zoom in and out

Open xiedapao opened this issue 6 years ago • 1 comments

When we zoom in and out, the toolbar also follows the activity.

xiedapao avatar Aug 06 '19 03:08 xiedapao

@xiedapao You can add the class name on the two images then write below Jquery to your file.

//Zoom In Function document.querySelector('.zoom_in').onclick = function () { if(camera.zoom < 1.5) { camera.zoom+=0.2; camera.updateProjectionMatrix(); } };

//Zoom OUt Function
document.querySelector('.zoom_out').onclick = function () {
  if(camera.zoom > 0.5) {
    camera.zoom-=0.2;
    camera.updateProjectionMatrix();
  }
};

Manohartk avatar Oct 18 '19 11:10 Manohartk