新年将至, 程序员如何以代码送出新春祝福

举报
孙叫兽 发表于 2021/03/29 03:16:31 2021/03/29
【摘要】 导读:农历新年将至,祝福的话汇成千言万语都寄托在贺卡之中,也许今年你受到了很多的挫折,又或者是顺顺利利度过了一年。但不管怎么样,不管是哭与笑,人生的年轮都已经转过了一圈。我们唯有继续向前走,不要回头,未来的自己取决于现在的自己。有时候一句不经意的问候,一句小小的祝福都能让自己身心雀跃,获得短暂的拯救。因此,在即将到来的农历新年之际,程序员们以代码作为载体,以祝福作为载物...

导读:农历新年将至,祝福的话汇成千言万语都寄托在贺卡之中,也许今年你受到了很多的挫折,又或者是顺顺利利度过了一年。但不管怎么样,不管是哭与笑,人生的年轮都已经转过了一圈。我们唯有继续向前走,不要回头,未来的自己取决于现在的自己。有时候一句不经意的问候,一句小小的祝福都能让自己身心雀跃,获得短暂的拯救。因此,在即将到来的农历新年之际,程序员们以代码作为载体,以祝福作为载物,送给自己或者送给重要的人,亦或是那憧憬的远方。

各路工程师请在评论区各显神通吧,以代码的方式写下新春祝福语。

目录

 

前端工程师:

linux工程师

NCL工程师

HarmonyOS

其他工程师

java循环工程师收尾


前端工程师:


  
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>孙叫兽的博客-新年快乐</title>
  5. </head>
  6. <style type="text/css">
  7. body {
  8. /* 背景颜色*/
  9. background-color: #c6070c;
  10. /* 字体颜色 */
  11. color: #ffe392;
  12. /* 文字居中 */
  13. text-align: center;
  14. }
  15. table {
  16. padding-top: 100px;
  17. /* 居中 */
  18. margin: auto;
  19. /* 宽比例 */
  20. width: 50%;
  21. }
  22. .pinyin {
  23. height: 20px;
  24. /* 字母间距 */
  25. letter-spacing: 3px;
  26. font-weight: 400;
  27. }
  28. td {
  29. font-size: 158px;
  30. text-align: center;
  31. font-weight: 700;
  32. padding: 0px;
  33. }
  34. h2 {
  35. margin-top: 15px;
  36. margin-bottom: 100px;
  37. font-size: 38px;
  38. text-transform: uppercase;
  39. font-weight: 700;
  40. word-spacing: 5px;
  41. }
  42. p {
  43. font-weight: 700;
  44. letter-spacing: 1px;
  45. word-spacing: 2px;
  46. }
  47. button {
  48. background-color: #ef941a;
  49. color: #fffbe2;
  50. width: 200px;
  51. position: relative;
  52. border-radius: 5px;
  53. margin: 0;
  54. padding: 0;
  55. line-height: 0.5;
  56. cursor: pointer;
  57. border: none;
  58. outline: none;
  59. font-size: 16px;
  60. text-transform: uppercase;
  61. letter-spacing: 1px;
  62. }
  63. button:hover,
  64. button:focus {
  65. background-color: #efa134;
  66. }
  67. button:active {
  68. transform: translate(0px, 2px);
  69. -webkit-transform: translate(0px, 2px);
  70. }
  71. </style>
  72. <body>
  73. <table>
  74. <tr>
  75. <th class="pinyin" id="pinyin1">xīn</th>
  76. <th class="pinyin" id="pinyin2">nián</th>
  77. <th class="pinyin" id="pinyin3">kuài</th>
  78. <th class="pinyin" id="pinyin4"></th>
  79. </tr>
  80. <tr>
  81. <td id="jeskson1"></td>
  82. <td id="jeskson2"></td>
  83. <td id="jeskson3"></td>
  84. <td id="jeskson4"></td>
  85. </tr>
  86. </table>
  87. <h2 id="dadaEnglish">(新年快乐)</h2>
  88. <button type="button" id="button">
  89. <p>新年现金</p>
  90. </button>
  91. <script type="text/javascript">
  92. var pinyin1 = document.getElementById("pinyin1");
  93. var pinyin2 = document.getElementById("pinyin2");
  94. var pinyin3 = document.getElementById("pinyin3");
  95. var pinyin4 = document.getElementById("pinyin4");
  96. var jeskson1 = document.getElementById("jeskson1");
  97. var jeskson2 = document.getElementById("jeskson2");
  98. var jeskson3 = document.getElementById("jeskson3");
  99. var jeskson4 = document.getElementById("jeskson4");
  100. var dadaEnglish = document.getElementById("dadaEnglish");
  101. var button = document.getElementById("button");
  102. var random = Math.random();
  103. var p1 = [
  104. "xīn",
  105. "gōng",
  106. "dà",
  107. "wàn",
  108. "nián",
  109. "shēn",
  110. "xīn",
  111. "gōng"
  112. ];
  113. var p2 = [
  114. "nián",
  115. "xǐ",
  116. "jí",
  117. "shì",
  118. "nián",
  119. "tǐ",
  120. "xiǎng",
  121. "hè"
  122. ];
  123. var p3 = [
  124. "kuài",
  125. "fā",
  126. "dà",
  127. "rú",
  128. "yǒu",
  129. "jiàn",
  130. "shì",
  131. "xīn"
  132. ];
  133. var p4 = [
  134. "lè",
  135. "cái",
  136. "lì",
  137. "yì",
  138. "yú",
  139. "kāng",
  140. "chéng",
  141. "xǐ"
  142. ];
  143. var dadasC1 = [
  144. "新",
  145. "恭",
  146. "大",
  147. "萬",
  148. "年",
  149. "身",
  150. "心",
  151. "恭"
  152. ];
  153. var dadasC2 = [
  154. "年",
  155. "喜",
  156. "吉",
  157. "事",
  158. "年",
  159. "體",
  160. "想",
  161. "賀"
  162. ];
  163. var dadasC3 = [
  164. "快",
  165. "發",
  166. "大",
  167. "如",
  168. "有",
  169. "健",
  170. "事",
  171. "新"
  172. ];
  173. var dadasC4 = [
  174. "樂",
  175. "財",
  176. "利",
  177. "意",
  178. "餘",
  179. "康",
  180. "成",
  181. "禧"
  182. ];
  183. var dadasE = [
  184. "(新年快乐)",
  185. "(祝贺你的成功)",
  186. "(吉星高照)",
  187. "(愿一万件事都按你的愿望去做吗)",
  188. "(每一年都比你需要的多)",
  189. "(祝您身体健康)",
  190. "(愿你心想事成)",
  191. "(恭贺新禧)"
  192. ];
  193. pinyin1.textContent = p1[Math.floor(random * p1.length)];
  194. pinyin2.textContent = p2[Math.floor(random * p2.length)];
  195. pinyin3.textContent = p3[Math.floor(random * p3.length)];
  196. pinyin4.textContent = p4[Math.floor(random * p4.length)];
  197. jeskson1.textContent = dadasC1[Math.floor(random * dadasC1.length)];
  198. jeskson2.textContent = dadasC2[Math.floor(random * dadasC2.length)];
  199. jeskson3.textContent = dadasC3[Math.floor(random * dadasC3.length)];
  200. jeskson4.textContent = dadasC4[Math.floor(random * dadasC4.length)];
  201. dadaEnglish.textContent = dadasE[Math.floor(random * dadasE.length)];
  202. var onClick = function() {
  203. var random = Math.random();
  204. pinyin1.textContent = p1[Math.floor(random * p1.length)];
  205. pinyin2.textContent = p2[Math.floor(random * p2.length)];
  206. pinyin3.textContent = p3[Math.floor(random * p3.length)];
  207. pinyin4.textContent = p4[Math.floor(random * p4.length)];
  208. jeskson1.textContent = dadasC1[Math.floor(random * dadasC1.length)];
  209. jeskson2.textContent = dadasC2[Math.floor(random * dadasC2.length)];
  210. jeskson3.textContent = dadasC3[Math.floor(random * dadasC3.length)];
  211. jeskson4.textContent = dadasC4[Math.floor(random * dadasC4.length)];
  212. dadaEnglish.textContent = dadasE[Math.floor(random * dadasE.length)];
  213. }
  214. button.addEventListener("click", onClick);
  215. </script>
  216. </body>
  217. </html>

效果图:

 效果图:


  
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. <style>
  9. body {
  10. grid-template: 3em/3em;
  11. place-content: center;
  12. overflow: hidden;
  13. margin: 0;
  14. height: 100vh;
  15. background: #262626;
  16. font: 20vmin/1 lalezar, sans-serif;
  17. filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.5));
  18. }
  19. body,
  20. body *,
  21. body ::before,
  22. body ::after {
  23. display: grid;
  24. grid-area: 1/1;
  25. }
  26. .scene {
  27. overflow: hidden;
  28. clip-path: inset(0 round 5px);
  29. filter: contrast(0.85);
  30. }
  31. .scene::before {
  32. background: linear-gradient(90deg, #314065, #146a7c, #f0ab3d, #c271b4, #c20d90);
  33. content: "";
  34. }
  35. .rotor {
  36. place-self: center;
  37. width: 150%;
  38. height: 150%;
  39. grid-template-rows: 1fr 1fr;
  40. mix-blend-mode: multiply;
  41. animation: rotz 4s ease-in infinite;
  42. }
  43. @keyframes rotz {
  44. 41%,
  45. 50% {
  46. transform: rotate(0.5turn);
  47. }
  48. 91%,
  49. 100% {
  50. transform: rotate(1turn);
  51. }
  52. }
  53. .year {
  54. --i: 1;
  55. --not-i: calc(1 - var(--i));
  56. --not-k: calc(1 - var(--k));
  57. overflow: hidden;
  58. transform-origin: 50% 100%;
  59. transform: rotate(calc(var(--k)*.5turn));
  60. background: hsla(0, 0%, calc(var(--k)*100%), var(--i));
  61. color: hsla(0, 0%, calc(var(--not-k)*100%), var(--i));
  62. text-shadow: 0 0 calc(var(--not-i)*19px) hsl(0, 0%, calc(var(--not-k)*100%));
  63. text-decoration: none;
  64. }
  65. [aria-hidden=true] {
  66. --i: 0;
  67. }
  68. del {
  69. --k: 0;
  70. mix-blend-mode: screen;
  71. }
  72. ins {
  73. --k: 1;
  74. mix-blend-mode: multiply;
  75. }
  76. time {
  77. place-self: end center;
  78. display: flex;
  79. align-items: baseline;
  80. padding: 0 0.25em;
  81. height: 1.5em;
  82. background: inherit;
  83. animation: move 4s ease-in infinite, blob calc(var(--i)*2s) ease-out infinite alternate;
  84. animation-delay: calc(var(--k)*-2s);
  85. }
  86. time::before,
  87. time::after {
  88. display: grid;
  89. align-items: end;
  90. height: 100%;
  91. content: "";
  92. }
  93. @keyframes move {
  94. 41%,
  95. 50% {
  96. transform: translatey(calc(1ch + 19px));
  97. }
  98. 0%,
  99. 91%,
  100. 100% {
  101. transform: translatey(1px);
  102. }
  103. }
  104. @keyframes blob {
  105. 82%,
  106. 100% {
  107. filter: blur(13px) contrast(39);
  108. }
  109. }
  110. </style>
  111. </head>
  112. <body>
  113. <section class="scene">
  114. <div class="rotor">
  115. <del class="year" aria-hidden="true">
  116. <time datetime="2020">新年</time>
  117. </del><ins class="year" aria-hidden="true">
  118. <time datetime="2021">快乐</time></ins>
  119. <del class="year">
  120. <time datetime="2020">新年</time>
  121. </del><ins class="year">
  122. <time datetime="2021">快乐</time></ins>
  123. </div>
  124. </section>
  125. </body>
  126. </html>

linux工程师


  
  1. # 下载
  2. yum install -y figlet
  3. # 输出
  4. figlet happy new year!

效果图:

NCL工程师


  
  1. ;*************************************************
  2. ; Happy_new_year_2021.ncl
  3. ;************************************************
  4. ;
  5. ; Concepts illustrated:
  6. ; - Print
  7. ;
  8. ; These files are loaded by default in NCL V6.2.0 and newer
  9. ; load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_code.ncl"
  10. ; load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_csm.ncl"
  11. ;************************************************
  12. begin
  13. ;************************************************
  14. print("Happy New Year!")
  15. print("I wish you all Good luck in the Year of the Ox!")
  16. print("Wishing the Tencent Cloud Community the best of luck in 2021!")
  17. print("------------ from Meteorologist")
  18. ;************************************************
  19. end
  20. ;************************************************

HarmonyOS


  
  1. import ohos.aafwk.ability.AbilitySlice;
  2. import ohos.aafwk.content.Intent;
  3. import ohos.agp.components.Button;
  4. import ohos.agp.components.Component;
  5. import ohos.agp.components.DirectionalLayout;
  6. import ohos.hiviewdfx.HiLog;
  7. import ohos.hiviewdfx.HiLogLabel;
  8. public class MainAbilitySlice extends AbilitySlice {
  9. private static final HiLogLabel LABEL = new HiLogLabel(HiLog.LOG_APP, 0x00201, "云+社区");
  10. @Override
  11. public void onStart(Intent intent) {
  12. super.onStart(intent);
  13. DirectionalLayout directionalLayout = new DirectionalLayout(getContext());
  14. Button button = new Button(getContext());
  15. button.setText("新年快乐,牛年大吉!");
  16. button.setTextSize(200);
  17. if (button != null) {
  18. button.setClickedListener(new Component.ClickedListener() {
  19. @Override
  20. public void onClick(Component component) {
  21. HiLog.info(LABEL, "云+社区,祝所有人新年快乐,2021 我们一起加油!!");
  22. }
  23. });
  24. }
  25. directionalLayout.addComponent(button);
  26. super.setUIContent(directionalLayout);
  27. }
  28. }

其他工程师


  
  1. C++ ->
  2. cout<<"祝大家新春快乐!!!";
  3. C->
  4. printf("祝大家新春快乐!!!");
  5. Foxpro ->
  6. ?【祝大家新春快乐!!!】
  7. html ->
  8. <br/>☆祝大家新春快乐!!!☆<br/>
  9. iapp ->
  10. tw("祝大家新春快乐!!!")
  11. java ->
  12. System.out.println("祝大家新春快乐!!!");
  13. JScript ->
  14. alert("祝大家新春快乐!!!")
  15. Jscript ->
  16. document.write("祝大家新春快乐!!!")
  17. AS ->
  18. Alert.show("祝大家新春快乐!!!");
  19. Asp ->
  20. Response.Write"祝大家新春快乐!!!"
  21. C#:System.Console.WriteLine("祝大家新春快乐!!!!")
  22. perl ->
  23. print'祝大家新春快乐!!!'
  24. COBOL ->
  25. DISPLAY'祝大家新春快乐!!!
  26. Delphi ->
  27. ShowMessage('祝大家新春快乐!!!');
  28. DOS批处理 ->
  29. echo祝大家新春快乐!!!
  30. PHP ->
  31. echo"祝大家新春快乐!!!";
  32. powerBuilder ->
  33. messagebox("祝大家新春快乐!!!")
  34. Python ->
  35. print("祝大家新春快乐!!!")
  36. QBasic ->
  37. Print"祝大家新春快乐!!!"
  38. shell ->
  39. echo祝大家新春快乐!!!
  40. VB ->
  41. Print"祝大家新春快乐!!!"
  42. VBScript ->
  43. MsgBox"祝大家新春快乐!!!"
  44. VC ->
  45. MessageBox("祝大家新春快乐!!!");
  46. 易语言 ->
  47. 调试输出(“祝大家新春快乐!!!”)

java循环工程师收尾


  
  1. public static void main(String[] args) {
  2. LocalDate now = LocalDate.now();
  3. int year = now.getYear();
  4. int dayOfYear =now.lengthOfYear();
  5. System.out.println("dayOfYear = " + dayOfYear);
  6. for (int i = 1; i <= dayOfYear ; i++) {
  7. System.out.println(year+"年,第"+i+"天快乐!");
  8. }
  9. }

2021年,快乐每一天!

2021年,第1天快乐!

2021年,第2天快乐!

2021年,第3天快乐!

2021年,第4天快乐!

2021年,第5天快乐!

2021年,第6天快乐!

2021年,第7天快乐!

2021年,第8天快乐!

2021年,第9天快乐!

2021年,第10天快乐!

2021年,第11天快乐!

2021年,第12天快乐!

2021年,第13天快乐!

2021年,第14天快乐!

2021年,第15天快乐!

2021年,第16天快乐!

2021年,第17天快乐!

2021年,第18天快乐!

2021年,第19天快乐!

2021年,第20天快乐!

2021年,第21天快乐!

2021年,第22天快乐!

2021年,第23天快乐!

2021年,第24天快乐!

2021年,第25天快乐!

2021年,第26天快乐!

2021年,第27天快乐!

2021年,第28天快乐!

2021年,第29天快乐!

2021年,第30天快乐!

2021年,第31天快乐!

2021年,第32天快乐!

2021年,第33天快乐!

2021年,第34天快乐!

2021年,第35天快乐!

2021年,第36天快乐!

2021年,第37天快乐!

2021年,第38天快乐!

2021年,第39天快乐!

2021年,第40天快乐!

2021年,第41天快乐!

2021年,第42天快乐!

2021年,第43天快乐!

2021年,第44天快乐!

2021年,第45天快乐!

2021年,第46天快乐!

2021年,第47天快乐!

2021年,第48天快乐!

2021年,第49天快乐!

2021年,第50天快乐!

2021年,第51天快乐!

2021年,第52天快乐!

2021年,第53天快乐!

2021年,第54天快乐!

2021年,第55天快乐!

2021年,第56天快乐!

2021年,第57天快乐!

2021年,第58天快乐!

2021年,第59天快乐!

2021年,第60天快乐!

2021年,第61天快乐!

2021年,第62天快乐!

2021年,第63天快乐!

2021年,第64天快乐!

2021年,第65天快乐!

2021年,第66天快乐!

2021年,第67天快乐!

2021年,第68天快乐!

2021年,第69天快乐!

2021年,第70天快乐!

2021年,第71天快乐!

2021年,第72天快乐!

2021年,第73天快乐!

2021年,第74天快乐!

2021年,第75天快乐!

2021年,第76天快乐!

2021年,第77天快乐!

2021年,第78天快乐!

2021年,第79天快乐!

2021年,第80天快乐!

2021年,第81天快乐!

2021年,第82天快乐!

2021年,第83天快乐!

2021年,第84天快乐!

2021年,第85天快乐!

2021年,第86天快乐!

2021年,第87天快乐!

2021年,第88天快乐!

2021年,第89天快乐!

2021年,第90天快乐!

2021年,第91天快乐!

2021年,第92天快乐!

2021年,第93天快乐!

2021年,第94天快乐!

2021年,第95天快乐!

2021年,第96天快乐!

2021年,第97天快乐!

2021年,第98天快乐!

2021年,第99天快乐!

2021年,第100天快乐!

2021年,第101天快乐!

2021年,第102天快乐!

2021年,第103天快乐!

2021年,第104天快乐!

2021年,第105天快乐!

2021年,第106天快乐!

2021年,第107天快乐!

2021年,第108天快乐!

2021年,第109天快乐!

2021年,第110天快乐!

2021年,第111天快乐!

2021年,第112天快乐!

2021年,第113天快乐!

2021年,第114天快乐!

2021年,第115天快乐!

2021年,第116天快乐!

2021年,第117天快乐!

2021年,第118天快乐!

2021年,第119天快乐!

2021年,第120天快乐!

2021年,第121天快乐!

2021年,第122天快乐!

2021年,第123天快乐!

2021年,第124天快乐!

2021年,第125天快乐!

2021年,第126天快乐!

2021年,第127天快乐!

2021年,第128天快乐!

2021年,第129天快乐!

2021年,第130天快乐!

2021年,第131天快乐!

2021年,第132天快乐!

2021年,第133天快乐!

2021年,第134天快乐!

2021年,第135天快乐!

2021年,第136天快乐!

2021年,第137天快乐!

2021年,第138天快乐!

2021年,第139天快乐!

2021年,第140天快乐!

2021年,第141天快乐!

2021年,第142天快乐!

2021年,第143天快乐!

2021年,第144天快乐!

2021年,第145天快乐!

2021年,第146天快乐!

2021年,第147天快乐!

2021年,第148天快乐!

2021年,第149天快乐!

2021年,第150天快乐!

2021年,第151天快乐!

2021年,第152天快乐!

2021年,第153天快乐!

2021年,第154天快乐!

2021年,第155天快乐!

2021年,第156天快乐!

2021年,第157天快乐!

2021年,第158天快乐!

2021年,第159天快乐!

2021年,第160天快乐!

2021年,第161天快乐!

2021年,第162天快乐!

2021年,第163天快乐!

2021年,第164天快乐!

2021年,第165天快乐!

2021年,第166天快乐!

2021年,第167天快乐!

2021年,第168天快乐!

2021年,第169天快乐!

2021年,第170天快乐!

2021年,第171天快乐!

2021年,第172天快乐!

2021年,第173天快乐!

2021年,第174天快乐!

2021年,第175天快乐!

2021年,第176天快乐!

2021年,第177天快乐!

2021年,第178天快乐!

2021年,第179天快乐!

2021年,第180天快乐!

2021年,第181天快乐!

2021年,第182天快乐!

2021年,第183天快乐!

2021年,第184天快乐!

2021年,第185天快乐!

2021年,第186天快乐!

2021年,第187天快乐!

2021年,第188天快乐!

2021年,第189天快乐!

2021年,第190天快乐!

2021年,第191天快乐!

2021年,第192天快乐!

2021年,第193天快乐!

2021年,第194天快乐!

2021年,第195天快乐!

2021年,第196天快乐!

2021年,第197天快乐!

2021年,第198天快乐!

2021年,第199天快乐!

2021年,第200天快乐!

2021年,第201天快乐!

2021年,第202天快乐!

2021年,第203天快乐!

2021年,第204天快乐!

2021年,第205天快乐!

2021年,第206天快乐!

2021年,第207天快乐!

2021年,第208天快乐!

2021年,第209天快乐!

2021年,第210天快乐!

2021年,第211天快乐!

2021年,第212天快乐!

2021年,第213天快乐!

2021年,第214天快乐!

2021年,第215天快乐!

2021年,第216天快乐!

2021年,第217天快乐!

2021年,第218天快乐!

2021年,第219天快乐!

2021年,第220天快乐!

2021年,第221天快乐!

2021年,第222天快乐!

2021年,第223天快乐!

2021年,第224天快乐!

2021年,第225天快乐!

2021年,第226天快乐!

2021年,第227天快乐!

2021年,第228天快乐!

2021年,第229天快乐!

2021年,第230天快乐!

2021年,第231天快乐!

2021年,第232天快乐!

2021年,第233天快乐!

2021年,第234天快乐!

2021年,第235天快乐!

2021年,第236天快乐!

2021年,第237天快乐!

2021年,第238天快乐!

2021年,第239天快乐!

2021年,第240天快乐!

2021年,第241天快乐!

2021年,第242天快乐!

2021年,第243天快乐!

2021年,第244天快乐!

2021年,第245天快乐!

2021年,第246天快乐!

2021年,第247天快乐!

2021年,第248天快乐!

2021年,第249天快乐!

2021年,第250天快乐!

2021年,第251天快乐!

2021年,第252天快乐!

2021年,第253天快乐!

2021年,第254天快乐!

2021年,第255天快乐!

2021年,第256天快乐!

2021年,第257天快乐!

2021年,第258天快乐!

2021年,第259天快乐!

2021年,第260天快乐!

2021年,第261天快乐!

2021年,第262天快乐!

2021年,第263天快乐!

2021年,第264天快乐!

2021年,第265天快乐!

2021年,第266天快乐!

2021年,第267天快乐!

2021年,第268天快乐!

2021年,第269天快乐!

2021年,第270天快乐!

2021年,第271天快乐!

2021年,第272天快乐!

2021年,第273天快乐!

2021年,第274天快乐!

2021年,第275天快乐!

2021年,第276天快乐!

2021年,第277天快乐!

2021年,第278天快乐!

2021年,第279天快乐!

2021年,第280天快乐!

2021年,第281天快乐!

2021年,第282天快乐!

2021年,第283天快乐!

2021年,第284天快乐!

2021年,第285天快乐!

2021年,第286天快乐!

2021年,第287天快乐!

2021年,第288天快乐!

2021年,第289天快乐!

2021年,第290天快乐!

2021年,第291天快乐!

2021年,第292天快乐!

2021年,第293天快乐!

2021年,第294天快乐!

2021年,第295天快乐!

2021年,第296天快乐!

2021年,第297天快乐!

2021年,第298天快乐!

2021年,第299天快乐!

2021年,第300天快乐!

2021年,第301天快乐!

2021年,第302天快乐!

2021年,第303天快乐!

2021年,第304天快乐!

2021年,第305天快乐!

2021年,第306天快乐!

2021年,第307天快乐!

2021年,第308天快乐!

2021年,第309天快乐!

2021年,第310天快乐!

2021年,第311天快乐!

2021年,第312天快乐!

2021年,第313天快乐!

2021年,第314天快乐!

2021年,第315天快乐!

2021年,第316天快乐!

2021年,第317天快乐!

2021年,第318天快乐!

2021年,第319天快乐!

2021年,第320天快乐!

2021年,第321天快乐!

2021年,第322天快乐!

2021年,第323天快乐!

2021年,第324天快乐!

2021年,第325天快乐!

2021年,第326天快乐!

2021年,第327天快乐!

2021年,第328天快乐!

2021年,第329天快乐!

2021年,第330天快乐!

2021年,第331天快乐!

2021年,第332天快乐!

2021年,第333天快乐!

2021年,第334天快乐!

2021年,第335天快乐!

2021年,第336天快乐!

2021年,第337天快乐!

2021年,第338天快乐!

2021年,第339天快乐!

2021年,第340天快乐!

2021年,第341天快乐!

2021年,第342天快乐!

2021年,第343天快乐!

2021年,第344天快乐!

2021年,第345天快乐!

2021年,第346天快乐!

2021年,第347天快乐!

2021年,第348天快乐!

2021年,第349天快乐!

2021年,第350天快乐!

2021年,第351天快乐!

2021年,第352天快乐!

2021年,第353天快乐!

2021年,第354天快乐!

2021年,第355天快乐!

2021年,第356天快乐!

2021年,第357天快乐!

2021年,第358天快乐!

2021年,第359天快乐!

2021年,第360天快乐!

2021年,第361天快乐!

2021年,第362天快乐!

2021年,第363天快乐!

2021年,第364天快乐!

2021年,第365天快乐!

最后:祝大家 2021 新年快乐,牛年大吉,加油!

文章来源: sunmenglei.blog.csdn.net,作者:孙叫兽,版权归原作者所有,如需转载,请联系作者。

原文链接:sunmenglei.blog.csdn.net/article/details/113729879

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。