https://www.myziyuan.com/
- 225548545
- 这个应该是别人PS好的!只有网络地址,右键改图最后一个属性,里面有地址!
- 2021-03-25 14:45:01
- 爱吃鱼的猫
- 不知道你想要的是什么语言的代码啊?我这里有C#语言的,看看可能会对你有用:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;namespace pic_timer{ public partial class Form1 : Form { int index = 0; public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { timer1.Start(); } private void timer1_Tick(object sender, EventArgs e) { if (index < imageList1.Images.Count - 1) { index++; } else { index = 0; } index = index % imageList1.Images.Count; pictureBox1.Image = imageList1.Images[index]; label1.Text = String.Format("{0}:{1}", DateTime.Now.Minute.ToString(), DateTime.Now.Second.ToString()); if (progressBar1.Value >= progressBar1.Maximum) progressBar1.Value = 0; else progressBar1.Value=progressBar1.Value+progressBar1.Step; } private void toolStripStatusLabel1_Click(object sender, EventArgs e) { } }}
- 2021-02-12 14:38:06
- wdq
- 想找一个图片站源码 php的,要漂亮点的,帝国 dede phpcms php168等等都可以做图片站,至于页面要漂亮, 找找模板就有了。源码下载可以上down.chinaz.com下载。
- 2021-02-12 14:38:06