3
我會用JS小提琴開始:CSS3圖像旋轉和重新定位,以適應DIV
<div id="page" style="position: relative; background: #ccc; width: 500px; height: 600px;">
<div id="container" style="top: 50px; left: 100px; width: 200px; height: 200px; position: absolute; background: #fff;">
<img src="http://lorempixel.com/200/100/">
</div>
</div>
我有一整頁的div #page
,以及內部的另一個DIV #container
絕對定位反對#page
。
我想達到的目標,是旋轉圖像裏面90deg
,180deg
或270deg
但總是移動該圖像頂部的#container
左上角。
我試了一下transform-origin
但我找不到任何解決方案。
它的工作很好,但如果我有其他尺寸的圖像比黑白200x100? – blid
@blid ..那麼我認爲你需要先計算位置並將它們設置在'css函數中' –
你能提供一段代碼嗎?因爲這段代碼是exacly我正在尋找的答案:) – blid