The Tresure Talk Blog
by Antique Cash Monkey
Vintage Cash Cow Northern Ireland – Why They No Longer Serve NI (2025 Guide)
Wondering why Vintage Cash Cow no longer serves Northern Ireland? Here’s what changed—and how to…

How to Sell Gold Without Leaving the House – Safe Nationwide Pickup
Want to sell gold without stepping out the door? Discover our safe and trusted nationwide…

Sell Antique Fountain Pens: What They’re Worth and Why Collectors Love Them
Do you have an old collection of antique fountain pens or vintage writing sets tucked…

Turn Inherited Valuables Into Cash Fast | Trusted UK Service
Turn inherited valuables into cash. Trusted UK buyers of jewellery, coins, medals and luxury items.…

Sell Gold Sovereigns Online – Fast, Trusted & Hassle-Free
Want to sell gold sovereigns online? We offer free postal packs, expert valuations, and same-day…

Sell Vintage Cameras – Fast Valuation for Inherited or Collector Models
Got vintage cameras gathering dust? Whether inherited or collected, we offer fast valuations, fair offers,…

Inherited Jewellery – Turn It into Cash Without the Stress
Inheriting jewellery can be emotional – and overwhelming. Discover how to safely value and sell…

Vintage Cash Cow Alternatives in Northern Ireland | Sell Antiques Fast
Vintage Cash Cow no longer serves NI. Discover trusted alternatives with Antique Cash Monkey –…

Sell Your Clutter for Cash – Fast UK-Wide Service
Sell Your Clutter for Cash – Fast UK-Wide Service Selling Clutter: How to Turn Your…

<?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>
