Trusted Clicks

Developer
Size
3,314 Kb
Views
30,360

How do I make an trusted clicks?

Check the isTrusted property from the event object to see if your click was generated from a user or some other, possibly fraudulent, way. Protect your HTML5 game scores and applications!. What is a trusted clicks? How do you make a trusted clicks? This script and codes were developed by Andy Hoffman on 24 August 2022, Wednesday.

Trusted Clicks Previews

Trusted Clicks - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Trusted Clicks</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <button aria-describedby='my-tooltip', class='tooltip-wrapper'> Trusted clicks <span id='my-tooltip' class='trusted' role='tooltip'> I can trust you </span>
</button> <script src="js/index.js"></script>
</body>
</html>

Trusted Clicks - Script Codes CSS Codes

@import url(https://fonts.googleapis.com/css?family=Arimo);
button { color: white; padding: 1em 1.5em; border: none; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); font-size: 1.5em; outline: none;
}
body { background: #9966cc;
}
.tooltip-wrapper { text-transform: uppercase; background: #ececec; color: #555; cursor: help; font-family: Arimo; position: absolute; text-align: center; font-size: 1.2em; padding: 15px 20px; width: 200px; left: 50%; top: 50%; transform: translateZ(0) translateX(-50%) translateY(-50%); -webkit-font-smoothing: antialiased;
}
.tooltip-wrapper [role=tooltip] { font-size: 0.8em; bottom: 100%; left: 50%; margin-bottom: 15px; opacity: 0; padding: 1em 1.25em; width: 100%; transform: translateY(10px) translateX(-50%); transition: all 0.25s ease-out; box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28); pointer-events: none; position: absolute; background: #262626; color: white; display: block;
}
.tooltip-wrapper [role=tooltip].not-trusted { color: red;
}
.tooltip-wrapper [role=tooltip]:before { bottom: -1.2em; height: 1.2em; left: 0; width: 100%; position: absolute; content: " "; display: block;
}
.tooltip-wrapper [role=tooltip]:after { border-left: solid transparent 0.8em; border-right: solid transparent 0.8em; border-top: solid #262626 0.8em; bottom: -0.8em; content: " "; height: 0; left: 50%; margin-left: -13px; width: 0; position: absolute;
}
.tooltip-wrapper.show [role=tooltip] { opacity: 1; pointer-events: auto; transform: translateY(0px) translateX(-50%);
}

Trusted Clicks - Script Codes JS Codes

var tooltip = document.getElementById('my-tooltip'), button = document.querySelector('button'), messages = { trusted: 'Sweet, I can trust you', not_trusted: 'You are a phony click!' };
function buttonClicked(e) { button.classList.remove('show'); if (e.isTrusted) { tooltip.classList.remove('not-trusted'); tooltip.classList.add('trusted'); tooltip.innerHTML = messages.trusted; } else { tooltip.classList.add('not-trusted'); tooltip.classList.remove('trusted'); tooltip.innerHTML = messages.not_trusted; } button.classList.add('show')
}
button.addEventListener('click', buttonClicked);
Trusted Clicks - Script Codes
Trusted Clicks - Script Codes
Home Page Home
Developer Andy Hoffman
Username antibland
Uploaded August 24, 2022
Rating 3
Size 3,314 Kb
Views 30,360
Do you need developer help for Trusted Clicks?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Andy Hoffman (antibland) Script Codes
Create amazing Facebook ads with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!