April 5, 2023

Taplink как хостинг картинок

Видео: https://www.youtube.com/watch?v=pu3g-Es_t2A

Код для страницы

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>

<script src="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/js/toastr.min.js"></script>
  <link href="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/css/toastr.min.css" rel="stylesheet"/>
<script>
let onewaysvg = `<svg data-original-title="Копировать ссылку" style="margin-left:10px;width:15px;height:15px;cursor:pointer;" class="copy-icon" xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svgjs="http://svgjs.com/svgjs" width="512" height="512" x="0" y="0" viewBox="0 0 24 24" style="enable-background:new 0 0 512 512" xml:space="preserve" class=""><g><g><path d="m21.71 5.29-5-5c-.19-.18-.43-.29-.71-.29h-7c-1.65 0-3 1.35-3 3h-1c-1.65 0-3 1.35-3 3v15c0 1.65 1.35 3 3 3h11c1.65 0 3-1.35 3-3v-1c1.65 0 3-1.35 3-3v-11c0-.28-.11-.52-.29-.71zm-4.71-1.88 1.59 1.59h-1.59zm0 17.59c0 .55-.45 1-1 1h-11c-.55 0-1-.45-1-1v-15c0-.55.45-1 1-1h1v12c0 1.65 1.35 3 3 3h8zm3-4c0 .55-.45 1-1 1h-10c-.55 0-1-.45-1-1v-14c0-.55.45-1 1-1h6v4c0 .55.45 1 1 1h4z" fill="white" data-original="#000000" class=""></path></g></g></svg>`;
 $(()=>{
  setTimeout(()=>{
$('.picture-container').each(function(){
  $(this).append(onewaysvg)
})
  $('.picture-container svg').click(function(){
let link = $(this).closest('.picture-container').css('background-image').replace('url(','').replace(')','').replace(/\"/gi, "");
 navigator.clipboard.writeText(link);
  toastr.success('Скопировано!')
})
  },500)
  })
</script>
<style>
.picture-container {
  position:relative;
}
.picture-container svg {
  position:absolute;
  top:1em;
  right:1em;
  z-index:10;
  cursor:pointer;
}
</style>