Получение изображения из общей папки - PullRequest
0 голосов
/ 24 июня 2019

Я хочу получить изображение из общей папки в laravel внутри blankURL: 'public / assets / images / blank.gif', по этому пути

$(document).ready(function() { 
$('.zoomple').zoomple({ 

  // specifies the source for the blank image. 
  blankURL : 'public/assets/images/blank.gif', 

  // background color
  bgColor : '#90D5D9', 

  // if set to true, the magnifier will follow the mouse, if set to false, the magnifier will sit attached on the side of the image.
  attachWindowToMouse: true, 

  // when attachWindowToMouse is set to false, the window will sit on the side of the image. 
  // This property defines on which corner of the image, the magnifier will sit (e.g. windowPosition : {x:’right’,y:’bottom’}). 
  // Possible values for x: ‘right’, ‘left’. 
  // Possible values for y: ‘top’, ‘bottom’.
  windowPosition: {x:'right',y:'bottom'}, 

  // specifies the source for the “loading” image. 
  loaderURL : 'public/assets/images/loader.gif', 
  });
});
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...