+ 我來回答
回答最高可+2積分
已采納回答 / 慕粉4259319
-webkit-transform: skew(15deg) rotate(20deg); -moz-transform: skew(15deg) rotate(20deg); transform: skew(15deg) rotate(20deg);你要一起寫,因為你后面的會覆蓋前面的效果,只能一起寫才能同時起作用。
2016-11-09
已采納回答 / 慕妹7508549
有效的,是不是哪寫錯了<!DOCTYPE html><html><head><meta charset="UTF-8"><title>Document</title><style>@Keyframes changecolor{?0%{margin-left: 100px;? ?background: green;?}?40%{margin-left:150px;? ?background:orange;?}?60%{ ma...
2016-10-29
已采納回答 / LonelyAscetic
background-image:radial-gradient(to top left,red,orange,yellow,green,blue,indigo,violet)兄弟,徑向就是圓形的啊,不用加方向了。不是線性漸變。。
2016-10-18
已采納回答 / 慕神2706593
相對定位是相對于自身原有位置進行便宜,仍處于標準文檔流中。局對定位脫離了文檔流,偏移的參照基準是:有已定位的父元素以父元素為基準,無父元素(即無position)的話以<html>為基準。無定位的absolute元素可以使用margin定位
2016-10-18
已采納回答 / xujuan7090
-webkit-animation-iteration-count: infinite;?? ? -ms-animation-iteration-count: infinite;?? ? animation-iteration-count: infinite;用這個就可以循環,如果 “infinite”可以改成數字,就是你想循環多少次
2016-10-12