The Tresure Talk Blog
by Antique Cash Monkey
Hotel Gold Buyers in Northern Ireland: What You Need to Know Before You Sell
Seen advertisements for hotel gold buying events in Northern Ireland? Before selling your valuable gold,…

Where Is the Best Place to Sell Gold in Northern Ireland?
Looking to sell gold in Northern Ireland? Antique Cash Monkey is the only NI company…

What to Do with Inherited Items You Don’t Want | UK Guide 2025
Dealing with inherited items you don’t want after losing a loved one? This complete UK…

How to Sell Unwanted Silver – A Simple Guide to Getting the Best Price
Looking to sell unwanted silver? Learn how to get the best price for silver jewellery,…

Northern Ireland Gold Buyer: Unlocking the Hidden Value in Your Jewellery Box
Antique Cash Monkey is your trusted Northern Ireland gold buyer, offering free jewellery valuations, transparent…

Why Trust Matters – How Our Reviews Make Us Northern Ireland’s #1 Gold Buyer
Antique Cash Monkey’s reputation is proven by hundreds of real positive reviews. Learn why Northern…

Effortless Probate: Stress-Free Estate Valuables Guide | Antique Cash Monkey
Discover a step-by-step, stress-free guide to handling valuables during probate in the UK and Ireland.…

What Our Customers Say – Real Stories Behind the Items We’ve Bought
Discover the real stories from customers who sold inherited jewellery and antiques with Antique Cash…

Sell Silver in Northern Ireland – Trusted Buyers of Coins, Jewellery & More
Sell silver in Northern Ireland the easy way. Antique Cash Monkey offers a fast, trusted,…

<?php
wp_enqueue_script('brt-gsap');
?>
<script>
document.addEventListener('DOMContentLoaded', () => {
// Check if it's a touch device
const isTouchDevice = 'ontouchstart' in window;
const createCursorFollower = () => {
const $el = document.querySelector('.bt-cursor-follower');
// Each time the mouse coordinates are updated,
// we need to pass the values to gsap in order
// to animate the element
window.addEventListener('mousemove', (e) => {
const { target, clientX, clientY } = e;
// Check if target is inside elements with class .bt-blog-card8
const isTargetBlogCard = target?.closest('.bt-blog-card8');
// GSAP config
gsap.to($el, {
x: clientX - 48, // Adjusted to position cursor in the middle
y: clientY - 48, // Adjusted to position cursor in the middle
duration: 0.7,
ease: 'power4', // More easing options here: https://gsap.com/docs/v3/Eases/
opacity: isTargetBlogCard ? 1 : 0,
transform: `scale(${isTargetBlogCard ? 1 : 0})`,
});
});
// Hiding the cursor element when the mouse cursor
// is moved out of the page
document.addEventListener('mouseleave', (e) => {
gsap.to($el, {
duration: 0.7,
opacity: 0,
transform: 'scale(0)',
});
});
};
// Only invoke the function if it isn't a touch device
if (!isTouchDevice) {
createCursorFollower();
}
});
</script>
