Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
zoey-lin-attention-placement [2023/06/05 00:25] zoey.linzoey-lin-attention-placement [2024/06/23 22:12] (current) steve.wang
Line 7: Line 7:
 In real life when the company or shop wants to sell you stuff. The first thing that they should do is to know which level of the Maslow's hierarchy needs their target customers to care about so that they can easy to get their attention, also when the company is advertising, it is easier to design the message to better communicate and grasp the needs of customers.  In real life when the company or shop wants to sell you stuff. The first thing that they should do is to know which level of the Maslow's hierarchy needs their target customers to care about so that they can easy to get their attention, also when the company is advertising, it is easier to design the message to better communicate and grasp the needs of customers. 
  
 +
 +<html>
 +<style>
 +html {
 +    display: none; /* Makes the image a block element */
 +    opacity: 0; /* Initially hides the image */
 +    transition: opacity 1s ease-in-out; /* Smooth transition effect */
 +}
 +</style>
 +<script>
 +document.addEventListener("DOMContentLoaded", function() {
 +document.documentElement.style.display = 'block'
 +setTimeout(() => {
 +document.documentElement.style.opacity = '1'
 +}, 100)
 +})
 +
 +window.addEventListener('beforeunload', function (event) {
 +document.documentElement.style.opacity = '0'
 +})
 +</script>
 +</html>
  • zoey-lin-attention-placement.txt
  • Last modified: 2024/06/23 22:12
  • by steve.wang