标题: [特效代码] 批处理怎样让竖线这个符号转起来? [打印本页]
作者: dongmianwawa 时间: 2011-1-5 09:27 标题: 批处理怎样让竖线这个符号转起来?
想做个动画 让 | 他转起来。。请大虾帮忙!
作者: dongmianwawa 时间: 2011-1-5 09:46
— \ | / — \ | /
用这几个字符循环替换也可以。。。。代码怎么写呢?????
作者: hanyeguxing 时间: 2011-1-5 09:48
本帖最后由 pcl_test 于 2017-4-30 20:37 编辑
- @echo off&setlocal enableDelayedExpansion
- set "1=|"
- set "2=/"
- set "3=-"
- set "4=\"
- :a
- set/a a+=1
- cls
- echo !%a%!
- if %a%==4 set a=0
- >nul 2>&1 ping 127.1 -n 1
- goto:a
复制代码
- @echo off
- (for /l %%a in () do (
- for %%b in (^|^| \\ -- //) do (
- set/p=%%b&set/p=
- >nul ping 1 0
- )
- ))<nul
复制代码
作者: dongmianwawa 时间: 2011-1-5 09:50
可以在快点吗??哈哈
作者: caimingbing 时间: 2011-1-5 11:38
把ping的时间改成0,或者直接去年ping 延迟
作者: dingding3224 时间: 2011-5-4 10:42
顶起来 果断的顶起来
作者: hfg1977 时间: 2011-5-4 17:50
以前的一段代码:
- .....
- :choice1 在歌曲列表中查找 foob2000
- set /p "desfname=歌曲列表目标文件(默认:musiclist.txt):"
- if not defined desfname set "desfname=musiclist.txt"
- for /f "tokens=1,2* usebackq delims=[]" %%a in ("%desfname%") do (
- set/p =-<nul>con
- set "_artist=%%~nxa"&call set "_artist=%%_artist:* =%%"
- set/p =\<nul>con
- for /f "tokens=*" %%I in ("%%c") do (
- set/p =^|<nul>con
- if defined Name_%%~nxI (call echo %%Name_%%~nxI%% ---- %%_artist:~,-2%% [%%b] %%I)
- set/p =/<nul>con
- ))>>temp.txt
- goto end
- ...........
复制代码
欢迎光临 批处理之家 (http://bbs.bathome.net/) |
Powered by Discuz! 7.2 |