您现在的位置是:网站首页> 编程资料编程资料

HTML5+CSS3实现机器猫纯css3绘制的哆啦a梦机器猫头像效果源码

2023-10-13 333人已围观

简介 本文给大家分享一段html5和css3实现的机器猫功能,代码简单易懂非常不错,具有参考借鉴价值,感兴趣的朋友一起看看吧

下面一段代码是有关html5和css3实现机器猫的代码,具体代码如下所示:

XML/HTML Code复制内容到剪贴板
  1. >  
  2. <html lang="en">  
  3. <head>  
  4. <meta charset="UTF-8">  
  5. <title>机器猫title>  
  6. <style type="text/css">  
  7. * {   
  8. margin: 0;   
  9. padding: 0;   
  10. }   
  11. .whole {   
  12. width: 800px;   
  13. margin: 20px auto;   
  14. /*border: 2px solid yellow;*/   
  15. background-color: white;   
  16. position: relative;   
  17. }   
  18. .head {   
  19. margin: 0 auto;   
  20. position: relative;   
  21. width: 500px;   
  22. height: 440px;   
  23. background-color: #00b7e7;   
  24. border-radius: 220px;   
  25. border: 1px solid red;   
  26. }   
  27. .eye .left_eye,   
  28. .eye .right_eye {   
  29. width: 100px;   
  30. height: 130px;   
  31. background-color: white;   
  32. border: 2px solid black;   
  33. border-radius: 50px;   
  34. position: absolute;   
  35. top: 50px;   
  36. z-index: 3;   
  37. }   
  38. .eye .LeyeBall,   
  39. .eye .ReyeBall {   
  40. width: 20px;   
  41. height: 20px;   
  42. background: black;   
  43. border-radius: 10px;   
  44. position: absolute;   
  45. top: 65px;   
  46. }   
  47. .eye .left_eye {   
  48. left: 146px;   
  49. }   
  50. .eye .right_eye {   
  51. left: 250px;   
  52. }   
  53. .eye .LeyeBall {   
  54. right: 10px;   
  55. }   
  56. .eye .ReyeBall {   
  57. left: 10px;   
  58. }   
  59. .face {   
  60. position: relative;   
  61. z-index: 2;   
  62. }   
  63. .face .feature {   
  64. width: 400px;   
  65. height: 320px;   
  66. border-radius: 160px;   
  67. position: absolute;   
  68. top: 100px;   
  69. left: 50px;   
  70. background: white;   
  71. }   
  72. .face .nose {   
  73. width: 45px;   
  74. height: 50px;   
  75. border-radius: 23px;   
  76. background-color: #cf3318;   
  77. border: 2px solid black;   
  78. position: absolute;   
  79. top: 165px;   
  80. left: 225px;   
  81. z-index: 3;   
  82. }   
  83. .face .Nline {   
  84. width: 3px;   
  85. height: 160px;   
  86. background: black;   
  87. position: absolute;   
  88. top: 218px;   
  89. left: 248px;   
  90. z-index: 3;   
  91. }   
  92. .face .mouth {   
  93. width: 280px;   
  94. height: 280px;   
  95. border-bottom: 5px solid black;   
  96. border-radius: 140px;   
  97. position: absolute;   
  98. top: 98px;   
  99. left: 105px;   
  100. }   
  101. .face .mustache .MutR_higher {   
  102. width: 80px;   
  103. height: 2px;   
  104. background: black;   
  105. position: absolute;   
  106. top: 220px;   
  107. left: 295px;   
  108. z-index: 2;   
  109. }   
  110. .face .mustache .MutR_middle {   
  111. width: 80px;   
  112. height: 2px;   
  113. background: black;   
  114. position: absolute;   
  115. top: 240px;   
  116. left: 295px;   
  117. z-index: 2;   
  118. }   
  119. .face .mustache .MutR_lower {   
  120. width: 80px;   
  121. height: 2px;   
  122. background: black;   
  123. position: absolute;   
  124. top: 260px;   
  125. left: 295px;   
  126. z-index: 2;   
  127. }   
  128. .face .mustache .MutL_top {   
  129. width: 80px;   
  130. height: 2px;   
  131. background: black;   
  132. position: absolute;   
  133. top: 220px;   
  134. left: 115px;   
  135. z-index: 2;   
  136. }   
  137. .face .mustache .MutL_center {   
  138. width: 80px;   
  139. height: 2px;   
  140. background: black;   
  141. position: absolute;   
  142. top: 240px;   
  143. left: 115px;   
  144. z-index: 2;   
  145. }   
  146. .face .mustache .MutL_bottom {   
  147. width: 80px;   

相关内容

-六神源码网