用于控制背景图片在滚动时表现的工具类。
用于控制元素背景是否裁剪到边框、内边距盒子、内容盒子下的工具类。
用于控制元素背景色的工具类。
export default {
theme: {
backgroundColor: theme => ({
...theme('colors'),
primary: '#3490dc',
secondary: '#ffed4a',
danger: '#e3342f',
}),
},
}
用于控制元素背景色不透明度的工具类。
export default {
theme: {
extend: {
opacity: {
light: '0.15',
},
},
},
}
用于控制元素背景图片位置的工具类。
export default {
theme: {
backgroundPosition: {
'bottom': 'bottom',
'bottom-4': 'center bottom 1rem',
'center': 'center',
'left': 'left',
'left-bottom': 'left bottom',
'left-top': 'left top',
'right': 'right',
'right-bottom': 'right bottom',
'right-top': 'right top',
'top': 'top',
'top-4': 'center top 1rem',
},
},
}
用于控制元素背景图像重复的工具类。
用于控制元素背景图背景大小的工具类。
export default {
theme: {
backgroundSize: {
'auto': 'auto',
'cover': 'cover',
'contain': 'contain',
'50%': '50%',
'16': '4rem',
},
},
}
用于控制元素背景图像原点的工具类。