青春纸盒子

文: 芦苇

你喜欢我笑的样子

我靠上了落寞的窗子

晚风吹起了我的袖子

明月沾湿了你的眸子


转身,你走出了两个人的圈子

树影婆娑,整座院子


挽起袖子

回头,把揽你忧伤一地的影子

装进,青春,这纸盒子


更多代码请关注我的微信小程序: "ecoder"

luwei0915

导航

上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 51 下一页

2021年10月3日

06_移动端-3D转换-2

摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文

posted @ 2021-10-03 18:19 芦苇の 阅读(31) 评论(0) 推荐(0) 编辑

06_移动端-3D转换-1

摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文

posted @ 2021-10-03 18:05 芦苇の 阅读(24) 评论(0) 推荐(0) 编辑

05_移动端-2D转换-translate

摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文

posted @ 2021-10-03 09:31 芦苇の 阅读(25) 评论(0) 推荐(0) 编辑

04_移动端-伪元素选择器

摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文

posted @ 2021-10-03 08:47 芦苇の 阅读(31) 评论(0) 推荐(0) 编辑

03_移动端-结构伪类选择器

摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文

posted @ 2021-10-03 08:32 芦苇の 阅读(36) 评论(0) 推荐(0) 编辑

2021年10月1日

02_移动端-属性选择器

摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文

posted @ 2021-10-01 23:24 芦苇の 阅读(30) 评论(0) 推荐(0) 编辑

01_移动端-html5新特性

摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文

posted @ 2021-10-01 21:27 芦苇の 阅读(25) 评论(0) 推荐(0) 编辑

2021年9月30日

22_Go基础(map)

摘要: package main import ( "fmt" "math/rand" "sort" "time" ) func main() { // 初始化 mp1 := make(map[int]string, 8) mp1[0] = "a1" fmt.Println(mp1) // ap[0:a1] 阅读全文

posted @ 2021-09-30 17:17 芦苇の 阅读(29) 评论(0) 推荐(0) 编辑

21_Go基础(pointer)

摘要: package main import ( "fmt" ) func main() { // & 取地址 // * 根据地址取值 n1 := 10 p1 := &n1 fmt.Println(p1) // 0xc000014098 fmt.Printf("%T\n", p1) // *int fmt 阅读全文

posted @ 2021-09-30 17:16 芦苇の 阅读(30) 评论(0) 推荐(0) 编辑

20_Go基础(slice)

摘要: package main import ( "fmt" ) func main() { // 定义 切片不保存具体的值 s1 := []string{} s2 := []int{0, 1, 2, 3, 4, 5} fmt.Println(s1, s2) fmt.Println(s1 == nil) 阅读全文

posted @ 2021-09-30 17:15 芦苇の 阅读(37) 评论(0) 推荐(0) 编辑

上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 51 下一页