代码实例之纯CSS代码实现翻页效果
纯CSS实现翻页效果,原理比较简单,书签配合隐藏。dl { position:absolute; width:240px; height:170px; border:10px solid #eee; }dd { margin:0; width:240px; height:170px; overflow:hidden; }img { border:1px solid black }dt { position:absolute; right:3px; top:...