- UID
- 5756
- 主题
- 注册时间
- 2010-7-12
- 在线时间
- 小时
- 最后登录
- 1970-1-1
签到天数: 314 天 [LV.8]以坛为家I
|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?点击注册
x
本帖最后由 无界 于 2011-7-1 09:06 编辑
先看看效果,三个线条可自定义颜色的,背景可设为全透明。
这次不上传附件了,大家把下面代码另存为time.ini拷贝到rm的皮肤文件夹就行了- ;==========================
- ; 时钟 by 无界
- ;==========================
- [Rainmeter]
- Author=无界
- AppVersion=1
- Update=1
- ;Metadata added by RainBrowser
- ;http://bbs.windows7en.com
- ;--------------------------------------------------------------颜色--------------------------------------------------------------
- 【color1-3大家自己设定喜欢的颜色吧,这里只是举例为黑、红、黄】
- [Variables]
- color1=0, 0, 0
- color2=255, 0, 0
- color3=255, 255, 0
- ;Separator
- BlkSep=0, 0, 0, 100
- ;--------------------------------------------------------------背景--------------------------------------------------------------
- 【SolidColor=0,0,0,0时为全透明】
- [Background]
- Meter=IMAGE
- SolidColor=0, 0, 0, 50
- W=160
- H=160
- ;--------------------------------------------------------------时间--------------------------------------------------------------
- [MeasureTime]
- Measure=Time
- ;--------------------------------------------------------------时针--------------------------------------------------------------
- [MeterHours]
- Meter=ROUNDLINE
- MeasureName=MeasureTime
- X=75
- Y=84
- LineWidth=1
- StartAngle=4.7123889
- RotationAngle=6.2831853
- LineLength=56
- LineStart=51
- LineColor=#color1#
- Solid=1
- AntiAlias=10
- ValueReminder=43200
- ;--------------------------------------------------------------分针--------------------------------------------------------------
- [MeterMinutes]
- Meter=ROUNDLINE
- MeasureName=MeasureTime
- X=75
- Y=84
- LineWidth=1
- StartAngle=4.7123889
- RotationAngle=6.2831853
- LineLength=51
- LineStart=46
- LineColor=#color2#
- Solid=1
- AntiAlias=10
- ValueReminder=3600
- ;--------------------------------------------------------------秒针--------------------------------------------------------------
- [MeterSeconds]
- Meter=ROUNDLINE
- MeasureName=MeasureTime
- X=75
- Y=84
- LineWidth=1
- StartAngle=4.7123889
- RotationAngle=6.2831853
- LineLength=46
- LineStart=41
- LineColor=#color3#
- Solid=1
- AntiAlias=10
- ValueReminder=60
复制代码 |
|