background
Before starting the article, let’s briefly understand what is and what is
2077.
Cyberpunk is a background mostly built on the "combination of low-end life and advanced technology". It has advanced science and technology, and contrasts with a certain degree of collapse of the social structure; it has a variety of visual impact effects, such as those on the street. Neon lights, iconic street advertisements, and high-rise buildings are usually matched with colors of black, purple, green, blue, and red. Among them, Philip Dick's "Will a Bionic Man Dream of an Electronic Sheep?" "Most attention. In general, the main line of cyberpunk’s style is to reflect the strong contrast between the highly developed human civilization and the fragile and insignificant human individuals. At the same time, there are contradictions between the outside and the inside, the past and the future, the reality and the illusion. Interweave.
"Cyberpunk 2077" is an action role game,
will be launched on all major game platforms on December 10, 2020 at 160c709c80e0eb. The story takes place in the night city, the player will play an ambitious mercenary:
V
, looking for a unique implant-the key to immortality. It has gained a large number of players with its free exploration, high control and stunning visual effects. I like the design style of the official website of 2077
2077
as an example, and through several examples, we can realize the effect of cyberpunk style elements in turn.
achieve
High contrast
First, let’s take a look at the 2077
Chinese official website of 060c709c80e15b. The page mainly uses the eye-catching bright yellow as the main color, and uses its contrast color
light blue and
rose red color blocks as embellishments. Text and line borders use
pure Black. This step is very simple to implement. When we implement
style pages, we can use the 160c709c80e16a black, purple, green, blue, and red mentioned above as the main colors, and then use their contrast colors as buttons and text prompt boxes. Achieve a strong visual impact.
Fault style button
The failure effect is a kind of display device collapse effect, which is 2077
official website of 060c709c80e1be. Let's first realize the failure effect of button
in hover
<button>立即加入</button>
The fault effect is mainly realized through clip-path: inset
and animation. Using button
pseudo-element ::after
, which defines a plurality of slices --slice
variables, and by switching the position of the slice of the animation, to achieve the effect of shaking. The clip-path
attribute uses the clipping method to create the displayable area of the element. Part of the area is displayed, and the area outside is hidden. inset()
method is used to define a rectangle. You can pass in 5
parameters, which correspond to top
, right
, bottom
, left
the crop position of round
and radius
and 060c709c80e25d (optional, rounded corners). Its basic syntax is as follows:
inset( <length-percentage>{1,4} [ round <border-radius> ]? )
clip-path: inset(2em 3em 2em 1em round 2em);
Complete realization:
button, button::after {
width: 300px;
height: 86px;
font-size: 40px;
background: linear-gradient(45deg, transparent 5%, #FF013C 5%);
border: 0;
color: #fff;
letter-spacing: 3px;
line-height: 88px;
box-shadow: 6px 0px 0px #00E6F6;
outline: transparent;
position: relative;
}
button::after {
--slice-0: inset(50% 50% 50% 50%);
--slice-1: inset(80% -6px 0 0);
--slice-2: inset(50% -6px 30% 0);
--slice-3: inset(10% -6px 85% 0);
--slice-4: inset(40% -6px 43% 0);
--slice-5: inset(80% -6px 5% 0);
content: '立即加入';
display: block;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(45deg, transparent 3%, #00E6F6 3%, #00E6F6 5%, #FF013C 5%);
text-shadow: -3px -3px 0px #F8F005, 3px 3px 0px #00E6F6;
clip-path: var(--slice-0);
}
button:hover::after {
animation: 1s glitch;
animation-timing-function: steps(2, end);
}
@keyframes glitch {
0% { clip-path: var(--slice-1); transform: translate(-20px, -10px); }
10% { clip-path: var(--slice-3); transform: translate(10px, 10px); }
20% { clip-path: var(--slice-1); transform: translate(-10px, 10px); }
30% { clip-path: var(--slice-3); transform: translate(0px, 5px); }
40% { clip-path: var(--slice-2); transform: translate(-5px, 0px); }
50% { clip-path: var(--slice-3); transform: translate(5px, 0px); }
60% { clip-path: var(--slice-4); transform: translate(5px, 10px); }
70% { clip-path: var(--slice-2); transform: translate(-10px, 10px); }
80% { clip-path: var(--slice-5); transform: translate(20px, -10px); }
90% { clip-path: var(--slice-1); transform: translate(-10px, 0px); }
100% { clip-path: var(--slice-1); transform: translate(0); }
}
Fault style picture
Failure effects can also be applied to media displays such as texts, pictures, videos, etc., to create a full technological atmosphere. In this part, let's take a look at how to achieve the fault-style picture display effect.
.glitch
is the main body of the picture display container, and its sub-element glitch__item
used to indicate the fault bar, which is similar to the pseudo-element ::after
<div class="glitch">
<div class="glitch__item"></div>
<!-- ... -->
<div class="glitch__item"></div>
</div>
The fault style picture is basically similar to the fault style button, but this time it uses clip-path: polygon
achieve, polygon
used to cut polygons, and each pair of values represents the coordinates of the cut element. background-blend-mode
attribute defines the blending mode of the background layer. Due to the limited length of the article, the following code only shows an animation of a fault bar. For a complete example, please check the corresponding link 🔗
at the end of the article:
:root {
--gap-horizontal: 10px;
--gap-vertical: 5px;
--time-anim: 4s;
--delay-anim: 2s;
--blend-mode-1: none;
--blend-color-1: transparent;
}
.glitch {
position: relative;
}
.glitch .glitch__item {
background: url("banner.png") no-repeat 50% 50%/cover;
height: 100%;
width: 100%;
top: 0;
left: 0;
position: absolute;
}
.glitch .glitch__item:nth-child(1) {
background-color: var(--blend-color-1);
background-blend-mode: var(--blend-mode-1);
animation-duration: var(--time-anim);
animation-delay: var(--delay-anim);
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-name: glitch-anim-1;
}
@keyframes glitch-anim-1 {
0% {
opacity: 1;
transform: translate3d(var(--gap-horizontal), 0, 0);
clip-path: polygon(0 2%, 100% 2%, 100% 5%, 0 5%);
}
2% { clip-path: polygon(0 15%, 100% 15%, 100% 15%, 0 15%); }
4% { clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%); }
6% { clip-path: polygon(0 1%, 100% 1%, 100% 2%, 0 2%); }
8% { clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%); }
10% { clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%); }
12% { clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%); }
14% { clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%); }
16% { clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%); }
18% { clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%); }
20% { clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%); }
21.9% {
opacity: 1;
transform: translate3d(var(--gap-horizontal), 0, 0);
}
22%, 100% {
opacity: 0;
transform: translate3d(0, 0, 0);
clip-path: polygon(0 0, 0 0, 0 0, 0 0);
}
}
Neon elements
In cyberpunk scenes, such as the movie "Chassis Agents", the game "Watch 🏠
" and "Cyberpunk 2077", whether it is in the abandoned buildings 060c709c80e422, or the bustling Kabuki Town ⛩️
, there are a lot of neon Rainbow neon
element. We can also use a lot of neon elements to decorate the page, such as page titles, buttons, form borders, etc., can all use neon effects. The following is a brief example of neon text implementation:
.neon
two elements 060c709c80e45c and .flux
are two text carriers, which will be applied with different neon effect styles and animations.
<div class="neon">CYBER</div>
<div class="flux">PUNK</div>
The neon effect of the text is mainly realized by the text-shadow
attribute, and the flickering effect is also realized by adding the text-shadow
animation similar to the text color. The .neon
element is applied with the ease-in-out
motion curve, and the .flux
element is applied with the linear
motion curve. The difference between. 😂
.neon {
text-shadow: 0 0 3vw #F4BD0A;
animation: neon 2s ease-in-out infinite;
}
.flux {
text-shadow: 0 0 3vw #179E05;
animation: flux 2s linear infinite;
}
@keyframes neon {
0%, 100% {
text-shadow: 0 0 1vw #FA1C16, 0 0 3vw #FA1C16, 0 0 10vw #FA1C16, 0 0 10vw #FA1C16, 0 0 .4vw #FED128, .5vw .5vw .1vw #806914;
color: #FFFC00;
}
50% {
text-shadow: 0 0 .5vw #800E0B, 0 0 1.5vw #800E0B, 0 0 5vw #800E0B, 0 0 5vw #800E0B, 0 0 .2vw #800E0B, .5vw .5vw .1vw #40340A;
color: #806914;
}
}
@keyframes flux {
0%, 100% {
text-shadow: 0 0 1vw #10ff4c, 0 0 3vw #1041FF, 0 0 10vw #1041FF, 0 0 10vw #1041FF, 0 0 .4vw #8BFDFE, .5vw .5vw .1vw #147280;
color: #03C03C;
}
50% {
text-shadow: 0 0 .5vw #024218, 0 0 1.5vw #024713, 0 0 5vw #023812, 0 0 5vw #012707, 0 0 .2vw #022201, .5vw .5vw .1vw #011a06;
color: #179E05;
}
}
To make the text look more neon, the above example uses neon
font: https://s3-us-west-2.amazonaws.com/s.cdpn.io/707108/neon.ttf
Irregular text box
In Cyberpunk 2077, you can see that many text display boxes are of this kind of irregular graphics. Isn't it cool? This part will introduce how to implement 2077
style text boxes.
The above 3
text boxes are respectively composed of 3
and p
tags. .inverse
represents an inverted background, and .dotted
will realize a dotted background.
<p class="cyberpunk">经典的赛博朋克角色是边缘且性格疏远的独行者。他们生活在社会群体的边缘,一个弥漫反乌托邦氛围的未来:日常生活受到急剧改变的科技影响,普及的计算机化信息笼罩全球,以及侵入性的人体改造。</p>
<p class="cyberpunk inverse">经典的赛博朋克角色是边缘且性格疏远的独行者。他们生活在社会群体的边缘,一个弥漫反乌托邦氛围的未来:日常生活受到急剧改变的科技影响,普及的计算机化信息笼罩全球,以及侵入性的人体改造。</p>
<p class="cyberpunk inverse dotted">经典的赛博朋克角色是边缘且性格疏远的独行者。他们生活在社会群体的边缘,一个弥漫反乌托邦氛围的未来:日常生活受到急剧改变的科技影响,普及的计算机化信息笼罩全球,以及侵入性的人体改造。</p>
The irregular shape of the text box is mainly clip-path: polygon
. By cutting the following coordinates, a 2077
style polygon can be realized.
clip-path: polygon(
0px 25px,
26px 0px,
calc(60% - 25px) 0px,
60% 25px,
100% 25px,
100% calc(100% - 10px),
calc(100% - 15px) calc(100% - 10px),
calc(80% - 10px) calc(100% - 10px),
calc(80% - 15px) 100%,
80px calc(100% - 0px),
65px calc(100% - 15px),
0% calc(100% - 15px)
);
Complete code:
:root {
--yellow-color: #f9f002;
--border-color: #8ae66e;
}
.cyberpunk {
padding: 5px;
position: relative;
font-size: 1.2rem;
color: var(--yellow-color);
border: 30px solid var(--yellow-color);
border-right: 5px solid var(--yellow-color);
border-left: 5px solid var(--yellow-color);
border-bottom: 24px solid var(--yellow-color);
background-color: #000;
clip-path: polygon(0px 25px, 26px 0px, calc(60% - 25px) 0px, 60% 25px, 100% 25px, 100% calc(100% - 10px), calc(100% - 15px) calc(100% - 10px), calc(80% - 10px) calc(100% - 10px), calc(80% - 15px) 100%, 80px calc(100% - 0px), 65px calc(100% - 15px), 0% calc(100% - 15px));
}
.cyberpunk.inverse {
border: none;
padding: 40px 15px 30px;
color: #000;
background-color: var(--yellow-color);
border-right: 2px solid var(--border-color);
}
.dotted, .dotted:before, .dotted:after {
background: var(--yellow-color);
background-image: radial-gradient(#00000021 1px, transparent 0);
background-size: 5px 5px;
background-position: -13px -3px;
}
/* 文本框右侧小编号样式 */
.cyberpunk:before {
content: "P-14";
display: block;
position: absolute;
bottom: -12px;
right: 25px;
padding: 2px 2px 0px 2px;
font-size: 0.6rem;
line-height: 0.6rem;
color: #000;
background-color: var(--yellow-color);
border-left: 2px solid var(--border-color);
}
.cyberpunk.inverse:before {
content: "T-71";
right: 90px;
bottom: 9px;
}
.cyberpunk.inverse:before, .cyberpunk:before {
background-color: #000;
color: var(--yellow-color);
}
Cool form elements
2077
is also very distinctive. The input box elements input
and textarea
can also use clip-path: polygon
achieve irregular shapes, and radio and multiple :before
boxes can be decorated with pseudo elements 060c709c80e6c4 and :after
<input class="cyberpunk" type="text" placeholder="input 输入框" />
<textarea class="cyberpunk" placeholder="textarea 文本框"></textarea>
<label class="cyberpunk"><input class="cyberpunk" name="test" type="radio" />单选框1</label>
<label class="cyberpunk"><input class="cyberpunk" name="test" type="radio" />单选框2</label><br />
<label class="cyberpunk"><input class="cyberpunk" type="checkbox" />多选框</label><br />
The complete implementation is as follows:
input[type="text"].cyberpunk, textarea.cyberpunk {
width: calc(100% - 30px);
border: 30px solid #000;
border-left: 5px solid #000;
border-right: 5px solid #000;
border-bottom: 15px solid #000;
clip-path: polygon(0px 25px, 26px 0px, calc(60% - 25px) 0px, 60% 25px, 100% 25px, 100% calc(100% - 10px), calc(100% - 15px) calc(100% - 10px), calc(80% - 10px) calc(100% - 10px), calc(80% - 15px) calc(100% - 0px), 10px calc(100% - 0px), 0% calc(100% - 10px));
padding: 12px;
}
input[type="radio"].cyberpunk {
border-radius: 15%;
z-index: 100;
height: 14px;
width: 20px;
appearance: none;
outline: none;
background-color: #000;
cursor: pointer;
position: relative;
margin: 0px;
display: inline-block;
}
input[type="radio"].cyberpunk:after {
content: "";
display: block;
width: 8px;
height: 6px;
background-color: var(--yellow-color);
position: absolute;
top: 2px;
left: 2px;
transition: background 0.3s, left 0.3s;
}
input[type="radio"].cyberpunk:checked:after {
background-color: var(--border-color);
left: 10px;
}
input[type="checkbox"].cyberpunk {
border-radius: 15%;
z-index: 100;
height: 20px;
width: 20px;
appearance: none;
outline: none;
background-color: #000;
cursor: pointer;
position: relative;
margin: 0px;
margin-bottom: -3px;
display: inline-block;
}
input[type="checkbox"].cyberpunk:before {
content: "";
display: block;
width: 8px;
height: 8px;
border: 2px solid var(--yellow-color);
border-top: 2px solid transparent;
border-radius: 50%;
position: absolute;
top: 5px;
left: 4px;
}
input[type="checkbox"].cyberpunk:after {
content: "";
display: block;
width: 2px;
height: 7px;
background-color: var(--yellow-color);
position: absolute;
top: 3px;
left: 9px;
}
input[type="checkbox"].cyberpunk:checked:before {
border-color: var(--border-color);
border-top-color: transparent;
}
input[type="checkbox"].cyberpunk:checked:after {
background-color: var(--border-color);
}
Title and text
Cyberpunk style show in a text page, it is often used as shown below input cursor blinking pattern and screen
fault style of style, we can be unified as
h1
- h5
title, hr
increase underscore decorative elements such as animations and Troubleshooting , Let’s take a look at how to achieve such a text effect.
<h1 class="cyberpunk">H1 title</h1>
<h1 class="cyberpunk glitched">H1 title glitched</h1>
h1.cyberpunk {
position: relative;
}
h1.cyberpunk:before {
content: "";
display: block;
position: absolute;
bottom: 0px;
left: 2px;
width: 100%;
height: 10px;
background-color: #000;
clip-path: polygon(0px 0px, 85px 0px, 90px 5px, 100% 5px, 100% 6px, 85px 6px, 80px 10px, 0px 10px);
}
h1.cyberpunk.glitched {
animation-name: glitched;
animation-duration: calc(.9s * 1.4);
animation-iteration-count: infinite;
animation-timing-function: linear;
}
@keyframes glitched {
0% { left: -4px; transform: skew(-20deg); }
11% { left: 2px; transform: skew(0deg); }
50% { transform: skew(0deg); }
51% { transform: skew(10deg); }
60% { transform: skew(0deg); }
100% { transform: skew(0deg); }
}
h1.cyberpunk.glitched:before {
animation-name: beforeglitched;
animation-duration: calc(.9s * 2);
animation-iteration-count: infinite;
animation-timing-function: linear;
}
@keyframes beforeglitched {
0% {
left: -4px;
transform: skew(-20deg);
clip-path: polygon(0px 0px, 85px 0px, 90px 5px, 100% 5px, 100% 6px, 85px 6px, 80px 10px, 0px 10px);
}
11% {
left: 2px;
transform: skew(0deg);
clip-path: polygon(0px 0px, 85px 0px, 90px 5px, 100% 5px, 100% 6px, 85px 6px, 80px 10px, 0px 10px);
}
50% {
transform: skew(0deg);
clip-path: polygon(0px 0px, 85px 0px, 90px 5px, 100% 5px, 100% 6px, 85px 6px, 80px 10px, 0px 10px);
}
51% {
transform: skew(0deg);
clip-path: polygon(0px 0px, 85px 0px, 90px 5px, 100% 5px, 40% 5px, calc(40% - 30px) 0px, calc(40% + 30px) 0px, calc(45% - 15px) 5px, 100% 5px, 100% 6px, calc(45% - 14px) 6px, calc(40% + 29px) 1px, calc(40% - 29px) 1px, calc(40% + 1px) 6px, 85px 6px, 80px 10px, 0px 10px);
}
60% {
transform: skew(0deg);
clip-path: polygon(0px 0px, 85px 0px, 90px 5px, 100% 5px, 100% 6px, 85px 6px, 80px 10px, 0px 10px);
}
100% {
transform: skew(0deg);
clip-path: polygon(0px 0px, 85px 0px, 90px 5px, 100% 5px, 100% 6px, 85px 6px, 80px 10px, 0px 10px);
}
}
metallic feel
In the Cyberpunk 2077 webpage, in order to highlight the sense of technology, many page elements have a metallic texture, such as the background of the modal pop-up window and the border of the text display block. In this part, take a look at how to implement a simple metal material background.
The four button
elements will be added with the metallic background color effects of gold, silver, copper, and titanium respectively.
<button class="gold">gold 金</button>
<button class="silver">silver 银</button>
<button class="bronze">bronze 铜</button>
<button class="titanium">titanium 钛</button>
To achieve the metallic luster effect, the main attributes are as follows: css
box-shadow
: Add shadows to highlight the three-dimensional texture.background: radial-gradient
: Radial gradient, add bottom shadow.background: linear-gradient
: linear gradient, main color background.background: conic-gradient
: Conical gradient, the final reflective metal effect.
Add the above three gradients in sequence as shown in the figure below:
Sample complete implementation code:
button {
padding: 2px;
width: 250px;
height: 250px;
border-radius: 12px;
border: groove 1px transparent;
}
.gold {
box-shadow: inset 0 0 0 1px #eedc00, inset 0 1px 2px rgba(255, 255, 255, 0.5), inset 0 -1px 2px rgba(0, 0, 0, 0.5);
background: conic-gradient(#edc800, #e3b600, #f3cf00, #ffe800, #ffe900, #ffeb00, #ffe000, #ebc500, #e0b100, #f1cc00, #fcdc00, #d4c005fb, #fad900, #eec200, #e7b900, #f7d300, #ffe800, #ffe300, #f5d100, #e6b900, #e3b600, #f4d000, #ffe400, #ebc600, #e3b600, #f6d500, #ffe900, #ffe90a, #edc800) content-box, linear-gradient(#f6d600, #f6d600) padding-box, radial-gradient(rgba(120, 120, 120, 0.9), rgba(120, 120, 120, 0) 70%) 50% bottom/80% 0.46875em no-repeat border-box;
}
.silver {
box-shadow: inset 0 0 0 1px #c9c9c9, inset 0 1px 2px rgba(255, 255, 255, 0.5), inset 0 -1px 2px rgba(0, 0, 0, 0.5);
background: conic-gradient(#d7d7d7, #c3c3c3, #cccccc, #c6c6c6, #d3d3d3, #d8d8d8, #d5d5d5, #d8d8d8, #d3d3d3, #c5c5c5, #c0c0c0, #bfbfbf, #d0d0d0, #d9d9d9, #d1d1d1, #c5c5c5, #c8c8c8, #d7d7d7, #d5d5d5, #cdcdcd, #c4c4c4, #d9d9d9, #cecece, #c5c5c5, #c5c5c5, #cdcdcd, #d8d8d8, #d9d9d9, #d7d7d7) content-box, linear-gradient(#d4d4d4, #d4d4d4) padding-box, radial-gradient(rgba(120, 120, 120, 0.9), rgba(120, 120, 120, 0) 70%) 50% bottom/80% 0.46875em no-repeat border-box;
}
.bronze {
box-shadow: inset 0 0 0 1px #bc7e6b, inset 0 1px 2px rgba(255, 255, 255, 0.5), inset 0 -1px 2px rgba(0, 0, 0, 0.5);
background: conic-gradient(#d95641, #b14439, #b2453a, #d25645, #d56847, #d05441, #b85137, #b2453a, #c34f40, #df4647, #a94338, #c94943, #c85442, #a4413c, #d9543a, #d1564e, #ab4338, #bb4a3c, #dc5843, #b94839, #aa4237, #c24e42, #ce523f, #ab4338, #dd5944, #ca4d33, #ab4338, #cb503e, #d95641) content-box, linear-gradient(#ad3b36, #ad3b36) padding-box, radial-gradient(rgba(120, 120, 120, 0.9), rgba(120, 120, 120, 0) 70%) 50% bottom/80% 0.46875em no-repeat border-box;
}
.titanium {
box-shadow: inset 0 0 0 1px #c7aca0, inset 0 1px 2px rgba(255, 255, 255, 0.5), inset 0 -1px 2px rgba(0, 0, 0, 0.5);
background: conic-gradient(#e6c9bf, #d2b5aa, #cbaea3, #d4b5ab, #e5c3bd, #d9c0b4, #d9bcb1, #c5a399, #e3c6bc, #e7cac0, #dec0b5, #d3b6ab, #cfada1, #d4b6ac, #e2c6c0, #e2c6c0, #d2b1a6, #d2b1a6, #d1b4a9, #e1c4ba, #e5c9be, #dec1b6, #d3b6ab, #ceb0a6, #cfada3, #d2b5aa, #dabdb2, #e5c9be, #e6c9bf) content-box, linear-gradient(#e5c9be, #e5c9be) padding-box, radial-gradient(rgba(120, 120, 120, 0.9), rgba(120, 120, 120, 0) 70%) 50% bottom/80% 0.46875em no-repeat border-box;
}
Combining3
kinds of gradients of 060c709c80ecf can create more complex and beautiful metal material effects. The complete code can preview the corresponding link🔗
at the end of the article.
other
In addition to the above aspects, what other elements of cyberpunk style are worth learning? Through the following points, you can also enhance the technological art and user experience of the webpage. Do you have a better idea? 😊
- Use flat, pixelated fonts;
- The page loading animation, scrolling animation, and scroll bar full of science and technology;
- Chinese/Japanese/English mixed copywriting highlights the cultural integration of the future world;
- According to the mouse movement to increase the perspective effect, you can read my other article
"How to map the mouse position in CSS, and realize the effect of controlling page elements by mouse movement".
- ...
read more
- Fault picture effect example full version https://codepen.io/dragonir/full/oNZPLzo
- Complex metal effect https://codepen.io/dragonir/full/jOBvrZP
- Title text https://codepen.io/dragonir/full/vYxzwGG
- Cyberpunk 404 page https://codepen.io/ltrademark/pen/xpgprZ
Article address: 160c709c80ef3a https://segmentfault.com/a/1190000040166704
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。