用图解记录下transform-origin:
演示地址:http://sandbox.runjs.cn/show/mucxvs7c
transform-origin一般取值为:
(0%,0%) -----绕左上角
(100%,0%)----绕右上角
(100%,100%)---绕右下角
(0%,100%)----绕左下角
transform-origin:0% 0%---绕左上角
transform-origin:100% 0%---绕右上角
transform-origin:100% 100%---绕右下角
transform-origin:0% 100%---绕左下角