dva生成的項(xiàng)目里面用less寫樣式,想著寫一個(gè)動(dòng)畫,但是卻不起作用。代碼如下.box{ width: 100px; height: 100px; background-color: red; transform: translateX(100px);}:global{ .over{ animation:mymove 5s infinite; } @keyframes mymove { from { transform: translateX(0px) } to { transform: translateX(200px) } }}dom是這樣的<div className={cx(l.box, 'over')}> </div>按理說應(yīng)該初始化就會(huì)有動(dòng)畫,可是為什么沒有作用?不知道錯(cuò)在哪里??
項(xiàng)目啟用了css_modules,寫keyframes無效不知道為什么?
紫衣仙女
2019-03-19 13:15:48