最新回答 / 点灯夜
<!DOCTYPE html><html><head> <title>正方体</title><style>.wrapper{ width:800px; margin:100 auto 150px; perspective:200px; text-align:center; transform-style:preserve-3d;}#wrap{ width:200px; height:20...
2015-01-30
最赞回答 / TrulyWhite
我之前产生这个问题的原因是-webkit-transform-style: -webkit-preserve-3d;应该为-webkit-transform-style: preserve-3d;不需要webkit的前缀,有这种问题的大家可以看看是不是webkit哪里没写对,多写了或者少写了
2015-01-28
最赞回答 / 学习muke1
<html> <head> <title></title> <style> #my3dspace{ -webkit-perspective: 800; -webkit-perspective-origin: 50% 50%; overflow:hidden; } #pagegroup{ width:400px; height:400px; margin:0 auto; ...
2015-01-21