ShareLoading

13 bài đăng
12.08.2016 / 20:07
kaiser
Bài đăng: 238
Member

Cho ai đang rảnh k có rì nghịc :24:

HTML5
  1. <style>
  2. .wrapper {
  3. width: 100%;
  4. height: 100%;
  5. }
  6. .wrapper {
  7. position: relative;
  8. background: #e7f0f7;
  9. }
  10. .progressbar {
  11. display: block;
  12. position: absolute;
  13. z-index: 9;
  14. top: 0;
  15. right: 0;
  16. bottom: 0;
  17. left: 0;
  18. margin: auto;
  19. width: 400px;
  20. height: 30px;
  21. }
  22. .progressbar::before,
  23. .progressbar::after {
  24. content: '';
  25. display: block;
  26. position: absolute;
  27. z-index: 99;
  28. top: 0;
  29. left: 0;
  30. width: 100%;
  31. height: 100%;
  32. border-radius: 15px;
  33. background-image: -webkit-linear-gradient(0deg, #e91e63 0%, #e91e63 20%, #03a9f4 20%, #03a9f4 40%, #8bc34a 40%, #8bc34a 60%, #ffeb3b 60%, #ffeb3b 80%, #ff5722 80%, #ff5722 100%);
  34. background-image: linear-gradient(90deg, #e91e63 0%, #e91e63 20%, #03a9f4 20%, #03a9f4 40%, #8bc34a 40%, #8bc34a 60%, #ffeb3b 60%, #ffeb3b 80%, #ff5722 80%, #ff5722 100%);
  35. background-position: 0 0;
  36. background-repeat: repeat-x;
  37. -webkit-animation: movebar 5s linear infinite;
  38. animation: movebar 5s linear infinite;
  39. }
  40. .progressbar::before {
  41. box-shadow: 0 6px 10px 0 rgba(0,0,0,0.1);
  42. }
  43. .progressbar::after {
  44. z-index: 9;
  45. top: 6px;
  46. -webkit-filter: blur(16px);
  47. filter: blur(16px);
  48. opacity: 0.7;
  49. }
  50. .stylization {
  51. position: absolute;
  52. z-index: 999;
  53. height: 4px;
  54. width: 90%;
  55. left: 5%;
  56. top: 6px;
  57. opacity: 0.3;
  58. }
  59. .stylization::before,
  60. .stylization::after {
  61. content: '';
  62. display: block;
  63. position: absolute;
  64. height: 4px;
  65. top: 0;
  66. border-radius: 2px;
  67. }
  68. .stylization::before {
  69. background: #fff;
  70. left: 0;
  71. right: 10px;
  72. }
  73. .stylization::after {
  74. width: 6px;
  75. background: #fff;
  76. right: 0;
  77. }
  78. @-webkit-keyframes movebar {
  79. from {
  80. background-position: 0 0;
  81. }
  82. to {
  83. background-position: 400px 0;
  84. }
  85. }
  86. @keyframes movebar {
  87. from {
  88. background-position: 0 0;
  89. }
  90. to {
  91. background-position: 400px 0;
  92. }
  93. }
  94. </style>
  95.  
  96. <div class="wrapper">
  97. <div class="progressbar">
  98. <div class="stylization"></div>
  99. </div>
  100. </div>
12.08.2016 / 20:17
bongyb
Bài đăng: 157
Member

Cái này là cái gì. :24:

12.08.2016 / 20:27
kayer
Bài đăng: 240
Member
Đã đủ 18 dấu + làm người lớn

Ko giải thích gì cả!

12.08.2016 / 20:35
kaiser
Bài đăng: 238
Member

code loading :24: k thì để đấy nhìn cho nó sặc sỡ ngoài ra chả có tác dụng rì cả :v đã bảo cho ai đang rảnh k có rì chơi mà

12.08.2016 / 20:48
bongyb
Bài đăng: 157
Member
kaiser đã viết

code loading :24: k thì để đấy nhìn cho nó sặc sỡ ngoài ra chả có tác dụng rì cả :v đã bảo cho ai đang rảnh k có rì chơi mà

:shot: Bó tay

12.08.2016 / 21:03
vipnamdan
Bài đăng: 606
Member
Đẹp trai nhất xóm

Mod lại tí .okey :v

HTML5
  1. <style>
  2. .wrapper {
  3. width: 100%;
  4. height: 100%;
  5. }
  6. .wrapper {
  7. position: relative;
  8. background: #e7f0f7;
  9. }
  10. .progressbar {
  11. display: block;
  12. position: absolute;
  13. z-index: 9;
  14. top: 0;
  15. right: 0;
  16. bottom: 0;
  17. left: 0;
  18. margin: auto;
  19. width: 400px;
  20. height: 30px;
  21. }
  22. .progressbar::before,
  23. .progressbar::after {
  24. content: '';
  25. display: block;
  26. position: absolute;
  27. z-index: 99;
  28. top: 0;
  29. left: 0;
  30. width: 100%;
  31. height: 100%;
  32. border-radius: 15px;
  33. background-image: -webkit-linear-gradient(0deg, #e91e63 0%, #e91e63 20%, #03a9f4 20%, #03a9f4 40%, #8bc34a 40%, #8bc34a 60%, #ffeb3b 60%, #ffeb3b 80%, #ff5722 80%, #ff5722 100%);
  34. background-image: linear-gradient(90deg, #e91e63 0%, #e91e63 20%, #03a9f4 20%, #03a9f4 40%, #8bc34a 40%, #8bc34a 60%, #ffeb3b 60%, #ffeb3b 80%, #ff5722 80%, #ff5722 100%);
  35. background-position: 0 0;
  36. background-repeat: repeat-x;
  37. -webkit-animation: movebar 5s linear infinite;
  38. animation: movebar 5s linear infinite;
  39. }
  40. .progressbar::before {
  41. box-shadow: 0 6px 10px 0 rgba(0,0,0,0.1);
  42. }
  43. .progressbar::after {
  44. z-index: 9;
  45. top: 6px;
  46. -webkit-filter: blur(16px);
  47. filter: blur(16px);
  48. opacity: 0.7;
  49. }
  50. .stylization {
  51. position: absolute;
  52. z-index: 999;
  53. height: 4px;
  54. width: 90%;
  55. left: 5%;
  56. top: 6px;
  57. opacity: 0.3;
  58. }
  59. .stylization::before,
  60. .stylization::after {
  61. content: '';
  62. display: block;
  63. position: absolute;
  64. height: 4px;
  65. top: 0;
  66. border-radius: 2px;
  67. }
  68. .stylization::before {
  69. background: #fff;
  70. left: 0;
  71. right: 10px;
  72. }
  73. .stylization::after {
  74. width: 6px;
  75. background: #fff;
  76. right: 0;
  77. }
  78. @-webkit-keyframes movebar {
  79. from {
  80. background-position: 0 0;
  81. }
  82. to {
  83. background-position: 400px 0;
  84. }
  85. }
  86. @keyframes movebar {
  87. from {
  88. background-position: 0 0;
  89. }
  90. to {
  91. background-position: 400px 0;
  92. }
  93. }
  94. </style>
  95. <script type="text/javascript" src="hottp://ajax.microsoft.com/ajax/jquery.validate/1.7/jquery.validate.min.js"></script>
  96. <script type="text/javascript">window.onload = detectarCarga;
  97. function detectarCarga() {
  98. document.getElementById("Zenload").style.display="none";
  99. }</script>
  100. <div class="ntc" id="Zenload">
  101. <b><font style="font-size: 8pt;" color="#ff00cc" face="Verdana">
  102. <div class="wrapper">
  103. <div class="progressbar">
  104. <div class="stylization"></div>
  105. </div>
  106. </div> <script language="JavaScript">
  107. function toggleDisplay(id) {
  108. document.getElementById(id).style.visibility = "visible";
  109. if(document.getElementById(id).style.display == "none" ) {
  110. document.getElementById(id).style.display = "";
  111. } else {
  112. document.getElementById(id).style.display = "none";
  113. }
  114. }
  115. </script>
12.08.2016 / 21:05
mad
Bài đăng: 2434
Member
Nhào vô cắn tao đi, tao sợ mày à cắn bừa.
HTML5
  1. <script language="JavaScript">
  2. function toggleDisplay(id) {
  3. document.getElementById(id).style.visibility = "visible";
  4. if(document.getElementById(id).style.display == "none" ) {
  5. document.getElementById(id).style.display = "";
  6. } else {
  7. document.getElementById(id).style.display = "none";
  8. }
  9. }
  10. </script>

hình như code này klq gì đến code trên cả dư thừa cái này rùi

12.08.2016 / 21:07
vipnamdan
Bài đăng: 606
Member
Đẹp trai nhất xóm

Chắc vậy :v

12.08.2016 / 21:28
hanhphucao
Bài đăng: 2470
Admin
Admin là người tận tâm và luôn hành xử đúng mực.

Không like vì không có ảnh demo :19:

12.08.2016 / 21:34
aogiac
Bài đăng: 199
Member
cam-xanh.wap.mu

demo ...?