在“styles/index.wxss”文件中添加一些基本样式,如字体、颜色等,也可以美化按钮和输入框的外观。
时间: 2024-09-24 11:27:14 浏览: 44
在微信小程序的样式表文件“styles/index.wxss”中,你可以使用CSS(层叠样式表)来定制元素的样式。以下是一些基本样式的示例:
```css
/* 设置全局字体 */
body {
font-family: "微软雅黑", sans-serif;
color: #333; /* 文本颜色 */
}
/* 美化输入框 */
.input-wrap {
display: flex;
align-items: center;
margin-bottom: 10rpx;
}
.input-wrap input {
width: 70%;
height: 30rpx;
border: 1px solid #ccc;
padding: 5rpx;
}
/* 按钮样式 */
.button {
width: 70%;
height: 40rpx;
background-color: #007aff;
color: white;
text-align: center;
line-height: 40rpx;
border-radius: 5rpx;
cursor: pointer;
}
.button:hover {
background-color: #0069d9;
}
/* 成功/失败提示样式 */
.toast {
position: fixed;
top: 50%;
transform: translateY(-50%);
z-index: 1000;
font-size: 18rpx;
left: 50%;
transform: translateX(-50%);
background-color: rgba(0, 0, 0, 0.5);
padding: 10rpx;
border-radius: 5rpx;
display: none;
animation: show 0.3s ease;
}
@keyframes show {
from { opacity: 0; }
to { opacity: 1; }
}
```
在这段代码中,我们设置了全局字体、输入框和按钮的基本样式。当鼠标悬停在按钮上时会改变背景颜色。同时,还定义了一个动画效果(show),用于在提示消息显示时淡入。
记得将这些代码粘贴到你的“styles/index.wxss”文件中,并根据实际需求调整颜色、尺寸和其他属性。
阅读全文