iCarry

iCarry: Glock 26 duracoat finish

Reading Time: 0:19 min

iCarry Gun: Glock 26 duracoat finish S.cohen handmade suit Cole Haan air max shoes Victorinox Maverick watch The key to concealing in a flattering suit is explaining how you carry…

View post

iCarry: P232 chambered in .380

Reading Time: 0:31 min

iCarry Gun: P232 chambered in .380 by Sig Sauer of Germany iCarry Holster: The Executive, by Galco Gunleather, of America iCarry Accessories: Spare magazine holster by Galco iCarry Watch: Colt,…

View post

iCarry: Ruger LCP .380

Reading Time: 0:19 min

iCarry Gun: Ruger LCP .380 w/ Crimson Trace LaserGuard & 7 round mag. iCarry Ammo: Federal 95gr FMJ iCarry Holster: Foxx Holsters “Trapp” All Kydex IWB Holster iCarry Accessories: Ruger…

View post

iCarry: S&W M&P.40c in a Crossbreed Supertuck

Reading Time: 0:35 min

iCarry Gun: S&W M&P.40c iCarry Holster: Crossbreed Supertuck (horsehide, combat cut, velcro clips) iCarry Belt: Crossbreed w/ velcro strip iCarry Ammo: Speer Gold Dot 165gr HP (spare 10 round mag…

View post

iCarry: SAR ARMS B6P 9mm Pistol

Reading Time: 0:30 min

iCarry Gun: SAR ARMS B6P 9MM PISTOL iCarry Holster: Blackhawk Serpa Tried the B6P earlier this year while looking for something similar to my CZ-75 but cheaper, (paranoia of my…

View post

iCarry: FNH FNX-45

Reading Time: 0:14 min

iCarry Gun: FNH FNX-45 iCarry Holster: Wintrop IWB iCarry Accessories: Galco mag holder iCarry Ammo: 46 round of Grizzly +P175gr Xtreme

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>