var positionImage = function positionImage(imageEl) { var imageDimensions = imageEl.dataset.imageDimensions.split('x'); var originalWidth = imageDimensions[0]; var originalHeight = imageDimensions[1]; var focalPoint = imageEl.dataset.imageFocalPoint.split(','); var focalPointX = focalPoint[0]; var focalPointY = focalPoint[1]; var parentNode = imageEl.parentNode;
var scale = function () { var imageRatio = originalWidth / originalHeight; var parentClientSize = { height: parentNode.clientHeight, width: parentNode.clientWidth }; var parentRatio = parentClientSize.width / parentClientSize.height;
if (imageRatio > parentRatio) { return parentClientSize.height / originalHeight; }
return parentClientSize.width / originalWidth; }();
var getRelativeOffset = function getRelativeOffset() { var targetWidth = Math.ceil(originalWidth * scale); var targetHeight = Math.ceil(originalHeight * scale); var parentDimensionWidth = parentNode.offsetWidth; var parentDimensionHeight = parentNode.offsetHeight; var overflowWidth = targetWidth - parentDimensionWidth; var overflowHeight = targetHeight - parentDimensionHeight; var valueX;
if (overflowWidth === 0) { valueX = focalPointX; } else { valueX = Math.max(Math.min(targetWidth * focalPointX - parentDimensionWidth * 0.5, overflowWidth), 0) / overflowWidth; }
var valueY;
if (overflowHeight === 0) { valueY = focalPointY; } else { valueY = Math.max(Math.min(targetHeight * focalPointY - parentDimensionHeight * 0.5, overflowHeight), 0) / overflowHeight; }
return { valueX: valueX, valueY: valueY }; };
var relativeOffset = getRelativeOffset(); var valueX = relativeOffset.valueX; var valueY = relativeOffset.valueY; imageEl.style.objectPosition = "".concat(valueX * 100, "% ").concat(valueY * 100, "%"); Object.assign(imageEl.style, { height: '100%', width: '100%', objectFit: 'cover', }); };
Other Ways to Give
-
Donor -Advised Funds (DAF)
DAFs are one of the easiest and most tax advantageous ways to give to a charity. A DAF is like a charitable investment account for the sole purpose of supporting your favorite charitable organizations. When you contribute cash, securities or other assets to a DAF, you are eligible to take an immediate tax deduction. The funds can be invested for tax-free growth and you can choose to recommend specifically to TACT.
-
Planned Giving
A Planned Gift allows you to create a legacy for your family and will have a lasting impact on a cause you care about. Consult with your financial planner to find out which type of gift best suits you: Bequests, life insurance policies and retirement accounts, charitable gift annuities and or a charitable remainder annuity trust.
-
Tribute Gifts
Make a gift in honor or memory of someone. Tribute gifts are the perfect way to honor those who resonate with the TACT community and play a vital role in keeping their memory alive.
-
Stock Donations
Stock donations can be shares of stock that you own in a public company, in a private company, or in a mutual fund. They are one of the most tax-savvy ways to give because you won’t have to pay a capital gains tax, and you can take a charitable deduction on the current value of your shares.
-
For more information or assistance, please contact Tara Hitzig, tara@buildwithtact.org