Differences

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

Link to this comparison view

yiler-huang-attention-placement [2023/05/29 23:38] – created yiler.huangyiler-huang-attention-placement [2024/06/23 22:12] (current) steve.wang
Line 6: Line 6:
  
 In the class today, we learned that people tend to focus more on the things they think are important. This could result an attention blindness that makes them not to focus on other things. Taking myself as an example. I am saving money for a guitar recently, and it is very easy to draw my attention with things related to guitar or money. Therefore, when we are trying to communicating with people, it is good to know somehing about them so we could have a better idea of how we can package our message that is easy for them to understand and focus on. This could also be used on influencing people's thoughts. From the Maslow's Hierarchy of Needs, we learned that different people might have different kinds of needs. If we know what people think they need, we could possibly convince them to do something buy telling them benefits that fits their needs. An example would be that advertising companies often advertise their products differently depending on the target clients.   In the class today, we learned that people tend to focus more on the things they think are important. This could result an attention blindness that makes them not to focus on other things. Taking myself as an example. I am saving money for a guitar recently, and it is very easy to draw my attention with things related to guitar or money. Therefore, when we are trying to communicating with people, it is good to know somehing about them so we could have a better idea of how we can package our message that is easy for them to understand and focus on. This could also be used on influencing people's thoughts. From the Maslow's Hierarchy of Needs, we learned that different people might have different kinds of needs. If we know what people think they need, we could possibly convince them to do something buy telling them benefits that fits their needs. An example would be that advertising companies often advertise their products differently depending on the target clients.  
 +
 +<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>
  • yiler-huang-attention-placement.txt
  • Last modified: 2024/06/23 22:12
  • by steve.wang