当前位置:   article > 正文

Web前端--HTML+CSS+JS实现3D立体魔方小游戏_3d魔方网页

3d魔方网页

临近期末, 你还在为HTML网页设计结课作业,老师的作业要求感到头大?网页要求的总数量太多?HTML网页作业无从下手?没有合适的模板?等等一系列问题。你想要解决的问题,在这里常见网页设计作业题材有 个人、 美食、 公司、体育、 化妆品、 物流、 环保、 书籍、 婚纱、 军事、 游戏、 节日、 戒烟、 电影、 摄影 学校、 旅游、 电商、 宠物、 电器、 茶叶、 家居、 酒店、 舞蹈、 动漫、 明星、 服装、  文化、 家乡、 鲜花、 礼品、 汽车、 其他等网页设计题目, A+水平作业, 可满足大学生网页大作业网页设计需求都能满足你的需求。原始HTML+CSS+JS页面设计, web大学生网页设计作业源码,这是一个不错的电竞博客网页制作,画面精明,非常适合初学者学习使用。

效果演示: 

代码目录:

主要代码实现:

部分CSS样式:

  1. .cube {
  2. width: 100%;
  3. height: 100%;
  4. }
  5. @font-face {
  6. font-family: "RubikExtended";
  7. src: url("../media/RubikExtended.ttf") format( "truetype"), url("../media/RubikExtended.otf") format( "otf");
  8. font-weight: normal;
  9. font-style: normal;
  10. }
  11. /*
  12. This next bit is just for labeling a Cube's face.
  13. */
  14. .faceLabel {
  15. display: none;
  16. position: absolute;
  17. font-size: 60px;
  18. text-align: center;
  19. font-family: "RubikExtended";
  20. text-shadow: 0 0 24px rgba( 0, 0, 0, 0.3);
  21. color: #FFF;
  22. }
  23. .cube .cubelet {
  24. width: 1em;
  25. height: 1em;
  26. position: absolute;
  27. box-sizing: border-box;
  28. }
  29. Direction-facing planes of limited size
  30. that act as containers for content.
  31. */
  32. .cube
  33. /*.cubelet >*/
  34. .face {
  35. position: absolute;
  36. width: 1em;
  37. height: 1em;
  38. background-color: #000;
  39. text-align: center;
  40. -webkit-backface-visibility: hidden;
  41. -moz-backface-visibility: hidden;
  42. -o-backface-visibility: hidden;
  43. backface-visibility: hidden;
  44. padding: 0.05em;
  45. -moz-box-sizing: border-box;
  46. -webkit-box-sizing: border-box;
  47. -o-box-sizing: border-box;
  48. -ms-box-sizing: border-box;
  49. box-sizing: border-box;
  50. }
  51. /*
  52. Extroverted faces have content such as a colored sticker, text, etc.
  53. They are constantly visible. Meanwhile introverted faces are not
  54. visible when the cube is an untwisted state. Some introverted walls
  55. are momentarily visible as the cube twists.
  56. */
  57. .cube
  58. /*.cubelet >*/
  59. .face.faceIntroverted {
  60. background-color: #000;
  61. }

HTML代码 :

上面的js文件需要引入 /部分资料来自网络收集/侵权立删

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/96670
推荐阅读
相关标签
  

闽ICP备14008679号