Added Files
This commit is contained in:
47
Powershell/Scripts/write-animated.ps1
Normal file
47
Powershell/Scripts/write-animated.ps1
Normal file
@@ -0,0 +1,47 @@
|
||||
<#
|
||||
.SYNTAX write-animated.ps1 [<line1>] .. [line9>] [<speed>]
|
||||
.DESCRIPTION writes animated text
|
||||
.LINK https://github.com/fleschutz/PowerShell
|
||||
.NOTES Author: Markus Fleschutz / License: CC0
|
||||
#>
|
||||
|
||||
param($Line1 = "", $Line2 = "", $Line3 = "", $Line4 = "", $Line5 = "", $Line6 = "", $Line7 = "", $Line8 = "", $Line9 = "", [int]$Speed = 30) # 30 ms pause
|
||||
|
||||
$TerminalWidth = 120 # characters
|
||||
|
||||
function WriteLine { param([string]$Line, [int]$Speed)
|
||||
[int]$Start = 1
|
||||
[int]$End = $Line.Length
|
||||
$StartPosition = $HOST.UI.RawUI.CursorPosition
|
||||
$Spaces = " "
|
||||
|
||||
if ($Line -eq "") { return }
|
||||
foreach ($Pos in $Start .. $End) {
|
||||
$TextToDisplay = $Spaces.Substring(0, $TerminalWidth / 2 - $pos / 2) + $Line.Substring(0, $Pos)
|
||||
write-host -nonewline $TextToDisplay
|
||||
start-sleep -milliseconds $Speed
|
||||
$HOST.UI.RawUI.CursorPosition = $StartPosition
|
||||
}
|
||||
write-host ""
|
||||
}
|
||||
|
||||
if ($Line1 -eq "") {
|
||||
$Line1 = "Welcome to PowerShell Scripts"
|
||||
$Line2 = " "
|
||||
$Line3 = "This repository contains useful and cross-platform PowerShell scripts."
|
||||
$Line4 = " "
|
||||
$Line5 = "Best regards,"
|
||||
$Line6 = "Markus"
|
||||
}
|
||||
write-host ""
|
||||
WriteLine $Line1 $Speed
|
||||
WriteLine $Line2 $Speed
|
||||
WriteLine $Line3 $Speed
|
||||
WriteLine $Line4 $Speed
|
||||
WriteLine $Line5 $Speed
|
||||
WriteLine $Line6 $Speed
|
||||
WriteLine $Line7 $Speed
|
||||
WriteLine $Line8 $Speed
|
||||
WriteLine $Line9 $Speed
|
||||
write-host ""
|
||||
exit 0
|
||||
Reference in New Issue
Block a user