iCarry

iCarry: Colt Combat Commander

Reading Time: 0:26 min

iCarry gun: Colt Combat Commander 365 days a year iCarry Holster1: OWB in a tucker gunleather HF1 behind my right hip at the 3:30. iCarry Holster2: AIWB in a Dale…

View post

iCarry: Taurus PT-845

Reading Time: 0:16 min

iCarry Gun: Taurus PT-845 iCarry Holster: Tagua IWB @ 4 o’clock iCarry Ammo: Remington Ultimate Home Defense, 230 gr. BJHP iCarry Knife: Gerber 06 F.A.S.T., tanto iCarry Light: Nebo TAC-90

View post

iCarry: Sig P938 & Ruger SR9 (Dual Carry)

Reading Time: 0:18 min

iCarry Guns: Sig P938 (9mm) with Techna Clip & Ruger SR9 (9mm) with Galco Kydex IWB Holster. iCarry Knife: Kershaw Speedsafe Brawler knife clipped onto my front pocket.  

View post

iCarry: SIG Sauer P229

Reading Time: 0:10 min

iCarry Gun: SIG Sauer P229 – 9mm iCarry Ammo: Hornady Critical Defense 115gr FTX iCarry Holster: Raven Concealment Phantom IWB 3 O’Clock iCarry Knife: Boker Automat Kalashnikov 74 iCarry Flashlight:…

View post

iCarry: Ankle Carry Ruger SR1911 in 45ACP

Reading Time: 0:12 min

iAnkleCarry: My full size Ruger SR1911 in 45ACP. I have found that the ankle is a great option for in the car. The weapon secure, easy to reach, and won’t…

View post

iCarry: Beretta PX4 Storm compact .40 S&W

Reading Time: 0:8 min

iCarry gun: Beretta PX4 Storm compact .40 S&W iCarry ammo: Remington Ultimate Defense 180gr BJHP iCarry holster: Old Faithful IWB iCarry belt: Hanks Amish Belts

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>