Advertisement
Guest User

Untitled

a guest
Sep 21st, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.54 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>ここがタイトルだよ</title>
  6. <style>
  7. /*ここにCSSを書くよ*/
  8. </style>
  9. <script>
  10. /*ここにJavascriptを書くよ*/
  11. </script>
  12. </head>
  13. <body>
  14.  
  15. <div class="scroll"><p>Scroll</p></div>
  16. <style type="text/css">
  17.  
  18. .scroll{
  19. position: absolute;
  20. right: 50px;
  21. bottom: 0;
  22. width: 30px;
  23. height: 133px;
  24. -webkit-transition: .8s cubic-bezier(.41,.14,.83,.58) 4.5s;
  25. transition: .8s cubic-bezier(.41,.14,.83,.58) 4.5s;
  26. will-change: opacity;
  27. }
  28. .scroll:after {
  29. content: "";
  30. display: block;
  31. width: 1px;
  32. height: 70px;
  33. margin: 16px auto 0;
  34. -webkit-animation: marquee 1.5s ease 1s infinite normal none;
  35. animation: marquee 1.5s ease 1s infinite normal none;
  36. background: #000;
  37. }
  38. @-webkit-keyframes marquee {
  39. 0% {
  40. height: 0;
  41. background: #000
  42. }
  43. 40% {
  44. height: 70px;
  45. -webkit-transform: translateY(0)
  46. }
  47. 100% {
  48. height: 70px;
  49. background: #000;
  50. -webkit-transform: translateY(70px)
  51. }
  52. }
  53. @keyframes marquee {
  54. 0% {
  55. height: 0;
  56. background: #000
  57. }
  58. 40% {
  59. height: 70px;
  60. transform: translateY(0);
  61. @media all and(-ms-high-contrast:none) {
  62. transform: translateY(-100px)
  63. }
  64. }
  65. 100% {
  66. height: 70px;
  67. background: #000;
  68. transform: translateY(70px);
  69. @media all and(-ms-high-contrast:none) {
  70. transform: translateY(-30px)
  71. }
  72. }
  73. }
  74. </style>
  75.  
  76. </body>
  77. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement