微信小程序近些年越來越流行,其中最重要的一個元素就是CSS。好看的微信小程序css不僅可以吸引用戶眼球,還能夠提升用戶體驗(yàn)。下面分享一些個人認(rèn)為好看的微信小程序css設(shè)計。
/* 1. 簡約風(fēng)格 */
body {
background-color: #fff;
font-family: 'Microsoft YaHei', sans-serif;
}
/* 2. 扁平化風(fēng)格 */
button {
background-color: #2ecc71;
border: none;
color: #fff;
padding: 10px 20px;
font-size: 16px;
border-radius: 5px;
}
/* 3. 漸變色風(fēng)格 */
.container {
background: linear-gradient(165deg, #FFB6C1, #87CEFA);
border-radius: 20px;
padding: 10px 20px;
}
/* 4. 圖片懸浮效果 */
img:hover {
transform: scale(1.1);
}
/* 5. 卡片式布局 */
.card {
background-color: #fff;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
border-radius: 8px;
padding: 20px;
margin-bottom: 20px;
}
/* 6. 按鈕動畫效果 */
.button {
background-color: #3498db;
color: #fff;
border: 0;
border-radius: 3px;
transition: all 0.3s ease;
cursor: pointer;
padding: 10px 20px;
}
.button:hover {
transform: translateY(-1px);
box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
/* 7. 掉落效果 */
.byline {
background: rgba(255,255,255,0.5);
text-align: center;
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 20px;
transition: all ease 0.3s;
}
.card:hover .byline {
transform: translateY(-40px);
}
以上是一些簡單好看的微信小程序css。在設(shè)計微信小程序時,建議不要使用過于復(fù)雜的樣式,以免影響性能。同時,也應(yīng)該注意用戶體驗(yàn),保持頁面簡潔、易于操作。