摘要: 背景下雪特效 由于雪花是白色的所以要将背景设置成黑色或者是深色的 下面是css代码 *{padding: 0;margin: 0;} body{ background:#000; width: 100%; height: 100%; overflow:hidden; } 下面是就是代码 <scrip 阅读全文
posted @ 2020-10-14 14:59 limcod 阅读(92) 评论(0) 推荐(0)
摘要: 鼠标点击时反馈富强民主等字样的鼠标特效 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> <script> (function(){ var a_ 阅读全文
posted @ 2020-10-14 14:19 limcod 阅读(162) 评论(0) 推荐(0)
摘要: 插入排序 ###代码演示 import java.util.Arrays; public class xuan_ze { public static void main(String[] args) { int[] a = {4,6,8,7,9,2,10,1}; for (int i = 0;i < 阅读全文
posted @ 2020-10-14 11:32 limcod 阅读(56) 评论(0) 推荐(0)