当前位置:   article > 正文

HTML网页端,跳动的爱心代码_html爱心跳动代码

html爱心跳动代码

先看效果图 

话不多说,直接上代码,粘贴就能用

  heart.html

  1. <html>
  2. <head>
  3. <title>Lovely Heart</title>
  4. <style type="text/css">
  5. body {
  6. background-color: #FF0;
  7. font-family: Arial, sans-serif;
  8. font-size: 14px;
  9. color: #333;
  10. margin: 0;
  11. padding: 0;
  12. }
  13. #heart {
  14. width: 100px;
  15. height: 101px;
  16. position: absolute;
  17. top: 50%;
  18. left: 50%;
  19. margin-top: -50px;
  20. margin-left: -50px;
  21. background: #F00;
  22. border-radius: 10%;
  23. box-shadow: 0 0 10px #F00;
  24. animation: heart-beat 1s infinite;
  25. }
  26. #heart1 {
  27. width: 100px;
  28. height: 100px;
  29. position: absolute;
  30. top: 50%;
  31. left: 47%;
  32. margin-top: -50px;
  33. margin-left: -50px;
  34. background: #F00;
  35. border-radius: 50%;
  36. box-shadow: 0 0 10px #F00;
  37. animation: heart-beat 1s infinite;
  38. }
  39. #heart2 {
  40. width: 100px;
  41. height: 100px;
  42. position: absolute;
  43. top: 45%;
  44. left: 50%;
  45. margin-top: -50px;
  46. margin-left: -50px;
  47. background: #F00;
  48. border-radius: 50%;
  49. box-shadow: 0 0 10px #F00;
  50. animation: heart-beat 1s infinite;
  51. }
  52. @keyframes heart-beat {
  53. 0% {
  54. transform: scale(1);
  55. }
  56. 50% {
  57. transform: scale(1.2);
  58. }
  59. 100% {
  60. transform: scale(1);
  61. }
  62. }
  63. </style>
  64. </head>
  65. <body>
  66. <div id="heart"></div>
  67. <div id="heart1"></div>
  68. <div id="heart2"></div>
  69. </body>
  70. </html>

由于是相对位置,如果有错位,可以稍微修改一下 

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

闽ICP备14008679号