我试图使用常量是与样式表插件的组合,但由于某些原因它不起作用,继承人我做了什么:
的index.html
skrollr.init({
constants: {
scene2: 1200,
scene3: 4000,
scene4: 5000
}
});
skrollr.css
@-skrollr-keyframes background {
0 {background-color: white}
scene2-0 {background-color: white}
scene2-200 {background-color: red}
}
如果我使用正确的值而不是常量它工作正常,我做错了什么?
答案 0 :(得分:0)
试试这个
_scene2-0 {background-color: white}
_scene2-200 {background-color: red}