This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

Camera image/stream window coordinates
#2
You can use this Custom JavaScript for fixed window position. Set "Additional classes" for camera element to camera. Change top/left coordinates as needed. We'll see if "Hide in Touch" can be implemented for cameras.

Code:
$(function(){
  var btn = $('.camera'), win = btn.next();

  btn.on('vclick', function() {
    if (!win.hasClass('hide')) {
      win.css({ top: 100, left: 300 });
    }
  });
});
Reply


Messages In This Thread
RE: Camera image/stream window coordinates - by admin - 17.01.2019, 07:51

Forum Jump: