iCarry

iCarry: Para Expert Carry

Reading Time: 0:35 min

iCarry – Para Expert Carry, 3” .45ACP 1911 iCarry Holster – Alien Gear, IWB @ 4:00-5:00 o’clock position iCarry Belt – DeSantis E-25 iCarry Knife – Kershaw Cryo(inexpensive, but solid) iCarry…

View post

iCarry: Beretta Px4 Storm, Kimber Pro Raptor, Glock 19

Reading Time: 0:24 min

iCarry Guns Beretta Px4 Storm 9mm with Talon Grips Kimber Pro Raptor 45acp Glock 19 Gen 4 9mm

View post

iCarry – S&W 686 Plus 2.5

Reading Time: 0:45 min

In the winter, I carry a Smith & Wesson 686 Plus (7 shot) .357 Magnum 2.5″.  I carry it in an OWB Multi Holster Kydex Holster.  I use a Mission…

View post

iCarry: Glock 26 with Crimson Trace Laser Grip

Reading Time: 0:27 min

iCarry Gun: Glock 26 with Crimson Trace Laser Grip Stippling and GunKote by Phoenix Weapon Solutions Hornaday Critical Defense Ammunition IWB Custom Holster iCarry Accessories: Fox 5.3 Spray, Browning Micro…

View post

iCarry: Wilson Combat .45ACP CQB Elite

Reading Time: 0:26 min

iCarry Gun: Wilson Combat .45ACP CQB Elite iCarry Holster & Belt: Milt Sparks VMII on a Crossbreed belt iCarry Watch: Hamilton Viewmatic Automatic Watch iCarry Outfit: Uniqlo pants, Alfani slim…

View post

iCarry: Black Powder .44 New Army replica

Reading Time: 0:53 min

In the purple shirt is me, Black Powder .44 New Army replica in a Trinity Gun Leather custom made for me holster featuring Smaug the Terrible of Hobbit fame and…

View post
<script>
  /*Source: https://github.com/Krzysztof-Antosik/Two-direction-Sticky-Sidebar*/
  
  // Verificar el ancho de pantalla al cargar y redimensionar
  function checkScreenWidth() {
    if (window.innerWidth <= 767) {
      // Si la pantalla es menor o igual a 676px, no ejecutar el código
      return;
    }

    const stickyElement = document.querySelector('.fb-sidebar__aside');
    const startPosition = stickyElement.getBoundingClientRect().top;

    let endScroll = window.innerHeight - stickyElement.offsetHeight - 500;
    let currPos = window.scrollY;
    let screenHeight = window.innerHeight;
    let stickyElementHeight = stickyElement.offsetHeight;
    let topGap = 40;
    let bottomGap = 40;

    setTimeout(() => {
      if (stickyElement.hasAttribute('data-top-gap')) {
        const dataTopGap = stickyElement.getAttribute('data-top-gap');
        topGap = dataTopGap === 'auto' ? startPosition : parseInt(dataTopGap);
      }

      if (stickyElement.hasAttribute('data-bottom-gap')) {
        bottomGap = parseInt(stickyElement.getAttribute('data-bottom-gap'));
      }
    }, 100);

    stickyElement.style.position = 'sticky';
    stickyElement.style.top = `${topGap}px`;
    stickyElement.style.height = 'fit-content';

    function positionStickySidebar() {
      endScroll = window.innerHeight - stickyElement.offsetHeight - bottomGap;
      const stickyElementTop = parseInt(stickyElement.style.top.replace('px', ''));

      if (stickyElementHeight + topGap + bottomGap > screenHeight) {
        if (window.scrollY < currPos) {
          if (stickyElementTop < topGap) {
            stickyElement.style.top = `${stickyElementTop + currPos - window.scrollY}px`;
          } else if (stickyElementTop >= topGap && stickyElementTop !== topGap) {
            stickyElement.style.top = `${topGap}px`;
          }
        } else {
          if (stickyElementTop > endScroll) {
            stickyElement.style.top = `${stickyElementTop + currPos - window.scrollY}px`;
          } else if (stickyElementTop < endScroll && stickyElementTop !== endScroll) {
            stickyElement.style.top = `${endScroll}px`;
          }
        }
      } else {
        stickyElement.style.top = `${topGap}px`;
      }
      currPos = window.scrollY;
    }

    function stickyElementToMe() {
      stickyElement.style.top = `${topGap}px`;
    }

    function updateSticky() {
      screenHeight = window.innerHeight;
      stickyElementHeight = stickyElement.offsetHeight;
      positionStickySidebar();
    }

    setTimeout(() => {
      window.addEventListener('resize', () => {
        currPos = window.scrollY;
        updateSticky();
      });

      document.addEventListener('scroll', updateSticky, {
        capture: true,
        passive: true
      });
    }, 1000);
  }

  // Verificar el ancho de pantalla al cargar y redimensionar
  window.addEventListener('load', checkScreenWidth);
  window.addEventListener('resize', checkScreenWidth);
</script>