Skip to content

Commit 322f36a

Browse files
Update README.md
1 parent 1f6ba92 commit 322f36a

File tree

1 file changed

+24
-2
lines changed

1 file changed

+24
-2
lines changed

README.md

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ Here, the first two characters are `ao`, which means adding the option tag, and
6969
- Line 6: `al(InputName)=My Input Title`
7070
Here, the first two characters are `al`, which means adding a title, and then it is specified that it will be applied to a tag named `InputName`, and after the equal character (`=`), the title text is specified.
7171

72-
## Explanation of the action controls
72+
## Explanation of the Action Controls
7373

74-
Action controls are received in the form of an INI file format. In the first line of the response there is the word `[web-forms]` and each of the following lines is an action control.
74+
Action Controls are received in the form of an INI file format. In the first line of the response there is the word `[web-forms]` and each of the following lines is an action control.
7575

7676
The first two characters determine the action code. For example, things like adding styles and removing tags can be obtained from action codes. The first two letters stand for actions and indicate that an action must be performed.
7777

@@ -179,6 +179,28 @@ The following decrease the current numerical values:
179179

180180
> Note: Action controls are executed sequentially; if an action control decides to change an `id` attribute from a tag, subsequent action controls cannot perform actions with the previous `id` attribute.
181181
182+
### Pre Runner
183+
184+
Pre Runners are added before Action Control values.
185+
Each Pre Runner usually consists of one character, followed by the values ​​of the Pre Runner, and then ends with the closing parenthesis (')') character.
186+
187+
- →: **Delay** - Value: `Second`
188+
- ↑: **Period** - Value: `Second`
189+
190+
Example:
191+
192+
`↑4)+w<b>1=10px`
193+
194+
The above example means that every 4 seconds, the width of the second b tag is added by 10 pixels.
195+
196+
Pre Runners are placed in the queue and can be called one after the other.
197+
198+
Example:
199+
200+
`→10)↑4)+w<b>1=10px`
201+
202+
The above example is the same as the previous example, except that it is executed after 10 seconds.
203+
182204
## Define the tag
183205

184206
After the first two characters, there are 6 status types that define the tag:

0 commit comments

Comments
 (0)