Guest User

Untitled

a guest
Sep 25th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. div
  6. {
  7. width:200px;
  8. height:180px;
  9. background-color:#fb3;
  10. border:1px solid black;
  11. }
  12. div#div2
  13. {
  14. background: #58a;
  15. background-image: repeating-linear-gradient(30deg,
  16. hsla(0, 0%,100%, .1),
  17. hsla(0,0%,100%, .1) 10px,
  18. transparent 0, transparent 20px,
  19. hsla(0,0%,100%, .1) 20px,
  20. hsla(0,0%,100%, .1) 30px,
  21. transparent 0, transparent 40px
  22. );
  23. animation: shine 2s infinite linear;
  24. }
  25.  
  26. @keyframes shine {
  27. 0% { background-position: 0px 0px;}
  28. 100% { background-position: 200px 0px;}
  29. }
  30. </style>
  31. </head>
  32. <body>
  33.  
  34.  
  35. <div id="div2"> div 2元素</div>
  36.  
  37. </body>
  38. </html>
Add Comment
Please, Sign In to add comment