一個堪稱完美使用者體驗度的產品,離不開互動設計師所做出的巨大貢獻,互動設計師的日常離不開特有的思維習慣和經久沉澱下來的設計方法。這些看似簡單不起眼的規則,極有可能是一個產品未來能否在巨大的市場中脫穎而出的因素。
今天逛網站看到一個不錯的互動設計,文字將展開說明CSS程式碼實現過程,最終效果如下圖GIF所示,為減小GIF的大小,去掉了卡片中的內容。
這種卡片在各大官網中出現的比較多,介紹產品的種類,系統的功能,價格的等級等等。但是很多都是純卡片展示,沒有任何給到使用者的互動反饋,但像上圖所示在使用者滑鼠移動的過程中給到一個跟隨滑鼠移動的光圈,這樣就給到了足額的使用者的反饋,使用者體驗得到了極大的提升。
實現過程
JS程式碼
能夠跟隨滑鼠移動,前提就需要獲取到滑鼠的 X/Y 軸座標,這一點需要藉助於JS獲取,獲取所有的卡片元素,通過監聽 onmousemove
滑鼠移動事件計算出每個卡片內的光圈座標值,這裡通過CSS自定義屬性設定 --mouse-x
和 --mouse-y
到卡片的行內style中,稍後將在CSS中使用到,整體程式碼如下:
document.getElementById("cards").onmousemove = e => {
for(const card of document.getElementsByClassName("card")) {
const rect = card.getBoundingClientRect(),
x = e.clientX - rect.left,
y = e.clientY - rect.top;
card.style.setProperty("--mouse-x", `${x}px`);
card.style.setProperty("--mouse-y", `${y}px`);
};
}
CSS程式碼
在這裡為了保障程式碼簡潔,都是基於偽元素建立,主要是通過設定 radial-gradient()
函式建立徑向漸變光圈,再結合上面JS中設定的 --mouse-x
和 --mouse-y
即可讓介面跟隨滑鼠的移動動起來啦。程式碼如下:
.card::before {
background: radial-gradient(
800px circle at var(--mouse-x) var(--mouse-y),
rgba(255, 255, 255, 0.06),
transparent 40%
);
z-index: 3;
}
為了讓介面效果更真實,例項網站中用上了before
after
兩個偽元素設定了不同的半徑值。整體CSS程式碼如下:
:root {
--bg-color: rgb(20, 20, 20);
--card-color: rgb(23, 23, 23);
}
body {
align-items: center;
background-color: var(--bg-color);
display: flex;
height: 100vh;
justify-content: center;
margin: 0px;
overflow: hidden;
padding: 0px;
}
#cards {
display: flex;
flex-wrap: wrap;
gap: 8px;
max-width: 916px;
width: calc(100% - 20px);
}
#cards:hover > .card::after {
opacity: 1;
}
.card {
background-color: rgba(255, 255, 255, 0.1);
border-radius: 10px;
cursor: pointer;
display: flex;
height: 260px;
flex-direction: column;
position: relative;
width: 300px;
}
.card:hover::before{
opacity: 1;
}
.card::before,
.card::after {
border-radius: inherit;
content: "";
height: 100%;
left: 0px;
opacity: 0;
position: absolute;
top: 0px;
transition: opacity 500ms;
width: 100%;
}
.card::before {
background: radial-gradient(
800px circle at var(--mouse-x) var(--mouse-y),
rgba(255, 255, 255, 0.06),
transparent 40%
);
z-index: 3;
}
.card::after {
background: radial-gradient(
600px circle at var(--mouse-x) var(--mouse-y),
rgba(255, 255, 255, 0.3),
transparent 40%
);
z-index: 1;
}
.card > .card-content {
background-color: var(--card-color);
border-radius: inherit;
display: flex;
flex-direction: column;
flex-grow: 1;
inset: 1px;
padding: 10px;
position: absolute;
z-index: 2;
}
HTML程式碼
<div id="cards">
<div class="card">
<div class="card-content">***</div>
</div>
***
<div class="card">
<div class="card-content">***</div>
</div>
</div>
最後
整體程式碼拆解就結束了,看完是不是覺得很簡單呢,你如果有其他更好的方案歡迎留言交流。看完覺得有用,記得點贊收藏起來吧,說不定哪天就用上啦~
示例連結地址:https://linear.app/features
專注前端開發,分享前端相關技術乾貨,公眾號:南城大前端(ID: nanchengfe)