仅使用CSS:
左右翻转: 工作小提琴
.Container{ height: 200px; overflow-x: auto;}.Content{ height: 300px;}.Flipped{ direction: rtl;}.Content{ direction: ltr;}
顶部/底部翻转: 工作小提琴
.Container{ width: 200px; overflow-y: auto;}.Content{ width: 300px;}.Flipped, .Flipped .Content{ transform:rotateX(180deg); -ms-transform:rotateX(180deg); -webkit-transform:rotateX(180deg); }
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)