feat(Typed.js): hinzugefügt
This commit is contained in:
parent
15ce7c9384
commit
9bd5e63128
@ -18,6 +18,13 @@
|
||||
<Copyright>Copyright © 2024 Digital Data GmbH. All rights reserved.</Copyright>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Remove="wwwroot\lib\typed.js\**" />
|
||||
<Content Remove="wwwroot\lib\typed.js\**" />
|
||||
<EmbeddedResource Remove="wwwroot\lib\typed.js\**" />
|
||||
<None Remove="wwwroot\lib\typed.js\**" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Content Remove="bundleconfig.json" />
|
||||
</ItemGroup>
|
||||
|
||||
@ -60,6 +60,7 @@
|
||||
<script src="~/lib/pspdfkit/dist-2024.3.2/pspdfkit.js"></script>
|
||||
<script src="~/js/util.min.js" asp-append-version="true"></script>
|
||||
<script src="~/js/api-service.min.js" asp-append-version="true"></script>
|
||||
<script src="~/lib/typed.js@2.1.0/dist/typed.umd.js"></script>
|
||||
@await RenderSectionAsync("Scripts", required: false)
|
||||
@{
|
||||
var settings = new JsonSerializerSettings
|
||||
|
||||
21
EnvelopeGenerator.Web/wwwroot/lib/typed.js@2.1.0/LICENSE.txt
Normal file
21
EnvelopeGenerator.Web/wwwroot/lib/typed.js@2.1.0/LICENSE.txt
Normal file
@ -0,0 +1,21 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2023 Matt Boldt
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
378
EnvelopeGenerator.Web/wwwroot/lib/typed.js@2.1.0/README.md
Normal file
378
EnvelopeGenerator.Web/wwwroot/lib/typed.js@2.1.0/README.md
Normal file
@ -0,0 +1,378 @@
|
||||
[](https://codeclimate.com/github/mattboldt/typed.js)
|
||||
[]()
|
||||
[](https://img.shields.io/npm/dt/typed.js.svg)
|
||||
[](https://raw.githubusercontent.com/mattboldt/typed.js/master/LICENSE.txt)
|
||||
|
||||
<img src="https://raw.githubusercontent.com/mattboldt/typed.js/master/logo-cropped.png" width="450px" title="Typed.js" />
|
||||
|
||||
### [Live Demo](http://www.mattboldt.com/demos/typed-js/) | [View All Demos](http://mattboldt.github.io/typed.js/) | [View Full Docs](http://mattboldt.github.io/typed.js/docs) | [mattboldt.com](http://www.mattboldt.com)
|
||||
|
||||
Typed.js is a library that types. Enter in any string, and watch it type at the speed you've set, backspace what it's typed, and begin a new sentence for however many strings you've set.
|
||||
|
||||
---
|
||||
|
||||
## Installation
|
||||
|
||||
### CDN
|
||||
|
||||
```html
|
||||
<script src="https://unpkg.com/typed.js@2.1.0/dist/typed.umd.js"></script>
|
||||
```
|
||||
|
||||
For use directly in the browser via `<script>` tag:
|
||||
|
||||
```html
|
||||
<!-- Element to contain animated typing -->
|
||||
<span id="element"></span>
|
||||
|
||||
<!-- Load library from the CDN -->
|
||||
<script src="https://unpkg.com/typed.js@2.1.0/dist/typed.umd.js"></script>
|
||||
|
||||
<!-- Setup and start animation! -->
|
||||
<script>
|
||||
var typed = new Typed('#element', {
|
||||
strings: ['<i>First</i> sentence.', '& a second sentence.'],
|
||||
typeSpeed: 50,
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
```
|
||||
|
||||
### As an ESModule
|
||||
|
||||
For use with a build tool like [Vite](https://vitejs.dev/), and/or in a React application, install with NPM or Yarn.
|
||||
|
||||
#### NPM
|
||||
|
||||
```
|
||||
npm install typed.js
|
||||
```
|
||||
|
||||
#### Yarn
|
||||
|
||||
```
|
||||
yarn add typed.js
|
||||
```
|
||||
|
||||
#### General ESM Usage
|
||||
|
||||
```js
|
||||
import Typed from 'typed.js';
|
||||
|
||||
const typed = new Typed('#element', {
|
||||
strings: ['<i>First</i> sentence.', '& a second sentence.'],
|
||||
typeSpeed: 50,
|
||||
});
|
||||
```
|
||||
|
||||
### ReactJS Usage
|
||||
|
||||
```js
|
||||
import React from 'react';
|
||||
import Typed from 'typed.js';
|
||||
|
||||
function MyComponent() {
|
||||
// Create reference to store the DOM element containing the animation
|
||||
const el = React.useRef(null);
|
||||
|
||||
React.useEffect(() => {
|
||||
const typed = new Typed(el.current, {
|
||||
strings: ['<i>First</i> sentence.', '& a second sentence.'],
|
||||
typeSpeed: 50,
|
||||
});
|
||||
|
||||
return () => {
|
||||
// Destroy Typed instance during cleanup to stop animation
|
||||
typed.destroy();
|
||||
};
|
||||
}, []);
|
||||
|
||||
return (
|
||||
<div className="App">
|
||||
<span ref={el} />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
```
|
||||
|
||||
More complex hook-based function component: https://jsfiddle.net/mattboldt/60h9an7y/
|
||||
|
||||
Class component: https://jsfiddle.net/mattboldt/ovat9jmp/
|
||||
|
||||
### Use with Vue.js
|
||||
|
||||
Check out the Vue.js component: https://github.com/Orlandster/vue-typed-js
|
||||
|
||||
### Use it as WebComponent
|
||||
|
||||
Check out the WebComponent: https://github.com/Orlandster/wc-typed-js
|
||||
|
||||
## Wonderful sites that have used (or are using) Typed.js
|
||||
|
||||
https://github.com/features/package-registry
|
||||
|
||||
https://slack.com/
|
||||
|
||||
https://envato.com/
|
||||
|
||||
https://gorails.com/
|
||||
|
||||
https://productmap.co/
|
||||
|
||||
https://www.typed.com/
|
||||
|
||||
https://apeiron.io
|
||||
|
||||
https://git.market/
|
||||
|
||||
https://commando.io/
|
||||
|
||||
http://testdouble.com/agency.html
|
||||
|
||||
https://www.capitalfactory.com/
|
||||
|
||||
http://www.maxcdn.com/
|
||||
|
||||
https://www.powerauth.com/
|
||||
|
||||
---
|
||||
|
||||
### Strings from static HTML (SEO Friendly)
|
||||
|
||||
Rather than using the `strings` array to insert strings, you can place an HTML `div` on the page and read from it.
|
||||
This allows bots and search engines, as well as users with JavaScript disabled, to see your text on the page.
|
||||
|
||||
```javascript
|
||||
<script>
|
||||
var typed = new Typed('#typed', {
|
||||
stringsElement: '#typed-strings'
|
||||
});
|
||||
</script>
|
||||
```
|
||||
|
||||
```html
|
||||
<div id="typed-strings">
|
||||
<p>Typed.js is a <strong>JavaScript</strong> library.</p>
|
||||
<p>It <em>types</em> out sentences.</p>
|
||||
</div>
|
||||
<span id="typed"></span>
|
||||
```
|
||||
|
||||
### Type Pausing
|
||||
|
||||
You can pause in the middle of a string for a given amount of time by including an escape character.
|
||||
|
||||
```javascript
|
||||
var typed = new Typed('#element', {
|
||||
// Waits 1000ms after typing "First"
|
||||
strings: ['First ^1000 sentence.', 'Second sentence.'],
|
||||
});
|
||||
```
|
||||
|
||||
### Smart Backspacing
|
||||
|
||||
In the following example, this would only backspace the words after "This is a"
|
||||
|
||||
```javascript
|
||||
var typed = new Typed('#element', {
|
||||
strings: ['This is a JavaScript library', 'This is an ES6 module'],
|
||||
smartBackspace: true, // Default value
|
||||
});
|
||||
```
|
||||
|
||||
### Bulk Typing
|
||||
|
||||
The following example would emulate how a terminal acts when typing a command and seeing its result.
|
||||
|
||||
```javascript
|
||||
var typed = new Typed('#element', {
|
||||
strings: ['git push --force ^1000\n `pushed to origin with option force`'],
|
||||
});
|
||||
```
|
||||
|
||||
### CSS
|
||||
|
||||
CSS animations are built upon initialization in JavaScript. But, you can customize them at your will! These classes are:
|
||||
|
||||
```css
|
||||
/* Cursor */
|
||||
.typed-cursor {
|
||||
}
|
||||
|
||||
/* If fade out option is set */
|
||||
.typed-fade-out {
|
||||
}
|
||||
```
|
||||
|
||||
## Customization
|
||||
|
||||
```javascript
|
||||
var typed = new Typed('#element', {
|
||||
/**
|
||||
* @property {array} strings strings to be typed
|
||||
* @property {string} stringsElement ID of element containing string children
|
||||
*/
|
||||
strings: [
|
||||
'These are the default values...',
|
||||
'You know what you should do?',
|
||||
'Use your own!',
|
||||
'Have a great day!',
|
||||
],
|
||||
stringsElement: null,
|
||||
|
||||
/**
|
||||
* @property {number} typeSpeed type speed in milliseconds
|
||||
*/
|
||||
typeSpeed: 0,
|
||||
|
||||
/**
|
||||
* @property {number} startDelay time before typing starts in milliseconds
|
||||
*/
|
||||
startDelay: 0,
|
||||
|
||||
/**
|
||||
* @property {number} backSpeed backspacing speed in milliseconds
|
||||
*/
|
||||
backSpeed: 0,
|
||||
|
||||
/**
|
||||
* @property {boolean} smartBackspace only backspace what doesn't match the previous string
|
||||
*/
|
||||
smartBackspace: true,
|
||||
|
||||
/**
|
||||
* @property {boolean} shuffle shuffle the strings
|
||||
*/
|
||||
shuffle: false,
|
||||
|
||||
/**
|
||||
* @property {number} backDelay time before backspacing in milliseconds
|
||||
*/
|
||||
backDelay: 700,
|
||||
|
||||
/**
|
||||
* @property {boolean} fadeOut Fade out instead of backspace
|
||||
* @property {string} fadeOutClass css class for fade animation
|
||||
* @property {boolean} fadeOutDelay Fade out delay in milliseconds
|
||||
*/
|
||||
fadeOut: false,
|
||||
fadeOutClass: 'typed-fade-out',
|
||||
fadeOutDelay: 500,
|
||||
|
||||
/**
|
||||
* @property {boolean} loop loop strings
|
||||
* @property {number} loopCount amount of loops
|
||||
*/
|
||||
loop: false,
|
||||
loopCount: Infinity,
|
||||
|
||||
/**
|
||||
* @property {boolean} showCursor show cursor
|
||||
* @property {string} cursorChar character for cursor
|
||||
* @property {boolean} autoInsertCss insert CSS for cursor and fadeOut into HTML <head>
|
||||
*/
|
||||
showCursor: true,
|
||||
cursorChar: '|',
|
||||
autoInsertCss: true,
|
||||
|
||||
/**
|
||||
* @property {string} attr attribute for typing
|
||||
* Ex: input placeholder, value, or just HTML text
|
||||
*/
|
||||
attr: null,
|
||||
|
||||
/**
|
||||
* @property {boolean} bindInputFocusEvents bind to focus and blur if el is text input
|
||||
*/
|
||||
bindInputFocusEvents: false,
|
||||
|
||||
/**
|
||||
* @property {string} contentType 'html' or 'null' for plaintext
|
||||
*/
|
||||
contentType: 'html',
|
||||
|
||||
/**
|
||||
* Before it begins typing
|
||||
* @param {Typed} self
|
||||
*/
|
||||
onBegin: (self) => {},
|
||||
|
||||
/**
|
||||
* All typing is complete
|
||||
* @param {Typed} self
|
||||
*/
|
||||
onComplete: (self) => {},
|
||||
|
||||
/**
|
||||
* Before each string is typed
|
||||
* @param {number} arrayPos
|
||||
* @param {Typed} self
|
||||
*/
|
||||
preStringTyped: (arrayPos, self) => {},
|
||||
|
||||
/**
|
||||
* After each string is typed
|
||||
* @param {number} arrayPos
|
||||
* @param {Typed} self
|
||||
*/
|
||||
onStringTyped: (arrayPos, self) => {},
|
||||
|
||||
/**
|
||||
* During looping, after last string is typed
|
||||
* @param {Typed} self
|
||||
*/
|
||||
onLastStringBackspaced: (self) => {},
|
||||
|
||||
/**
|
||||
* Typing has been stopped
|
||||
* @param {number} arrayPos
|
||||
* @param {Typed} self
|
||||
*/
|
||||
onTypingPaused: (arrayPos, self) => {},
|
||||
|
||||
/**
|
||||
* Typing has been started after being stopped
|
||||
* @param {number} arrayPos
|
||||
* @param {Typed} self
|
||||
*/
|
||||
onTypingResumed: (arrayPos, self) => {},
|
||||
|
||||
/**
|
||||
* After reset
|
||||
* @param {Typed} self
|
||||
*/
|
||||
onReset: (self) => {},
|
||||
|
||||
/**
|
||||
* After stop
|
||||
* @param {number} arrayPos
|
||||
* @param {Typed} self
|
||||
*/
|
||||
onStop: (arrayPos, self) => {},
|
||||
|
||||
/**
|
||||
* After start
|
||||
* @param {number} arrayPos
|
||||
* @param {Typed} self
|
||||
*/
|
||||
onStart: (arrayPos, self) => {},
|
||||
|
||||
/**
|
||||
* After destroy
|
||||
* @param {Typed} self
|
||||
*/
|
||||
onDestroy: (self) => {},
|
||||
});
|
||||
```
|
||||
|
||||
## Contributing
|
||||
|
||||
### [View Contribution Guidelines](./.github/CONTRIBUTING.md)
|
||||
|
||||
## end
|
||||
|
||||
Thanks for checking this out. If you have any questions, I'll be on [Twitter](https://twitter.com/atmattb).
|
||||
|
||||
If you're using this, let me know! I'd love to see it.
|
||||
|
||||
It would also be great if you mentioned me or my website somewhere. [www.mattboldt.com](http://www.mattboldt.com)
|
||||
2
EnvelopeGenerator.Web/wwwroot/lib/typed.js@2.1.0/dist/typed.cjs
vendored
Normal file
2
EnvelopeGenerator.Web/wwwroot/lib/typed.js@2.1.0/dist/typed.cjs
vendored
Normal file
File diff suppressed because one or more lines are too long
1
EnvelopeGenerator.Web/wwwroot/lib/typed.js@2.1.0/dist/typed.cjs.map
vendored
Normal file
1
EnvelopeGenerator.Web/wwwroot/lib/typed.js@2.1.0/dist/typed.cjs.map
vendored
Normal file
File diff suppressed because one or more lines are too long
2
EnvelopeGenerator.Web/wwwroot/lib/typed.js@2.1.0/dist/typed.module.js
vendored
Normal file
2
EnvelopeGenerator.Web/wwwroot/lib/typed.js@2.1.0/dist/typed.module.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
EnvelopeGenerator.Web/wwwroot/lib/typed.js@2.1.0/dist/typed.module.js.map
vendored
Normal file
1
EnvelopeGenerator.Web/wwwroot/lib/typed.js@2.1.0/dist/typed.module.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
3
EnvelopeGenerator.Web/wwwroot/lib/typed.js@2.1.0/dist/typed.umd.js
vendored
Normal file
3
EnvelopeGenerator.Web/wwwroot/lib/typed.js@2.1.0/dist/typed.umd.js
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
!function(t,s){"object"==typeof exports&&"undefined"!=typeof module?module.exports=s():"function"==typeof define&&define.amd?define(s):(t||self).Typed=s()}(this,function(){function t(){return t=Object.assign?Object.assign.bind():function(t){for(var s=1;s<arguments.length;s++){var e=arguments[s];for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])}return t},t.apply(this,arguments)}var s={strings:["These are the default values...","You know what you should do?","Use your own!","Have a great day!"],stringsElement:null,typeSpeed:0,startDelay:0,backSpeed:0,smartBackspace:!0,shuffle:!1,backDelay:700,fadeOut:!1,fadeOutClass:"typed-fade-out",fadeOutDelay:500,loop:!1,loopCount:Infinity,showCursor:!0,cursorChar:"|",autoInsertCss:!0,attr:null,bindInputFocusEvents:!1,contentType:"html",onBegin:function(t){},onComplete:function(t){},preStringTyped:function(t,s){},onStringTyped:function(t,s){},onLastStringBackspaced:function(t){},onTypingPaused:function(t,s){},onTypingResumed:function(t,s){},onReset:function(t){},onStop:function(t,s){},onStart:function(t,s){},onDestroy:function(t){}},e=new(/*#__PURE__*/function(){function e(){}var n=e.prototype;return n.load=function(e,n,i){if(e.el="string"==typeof i?document.querySelector(i):i,e.options=t({},s,n),e.isInput="input"===e.el.tagName.toLowerCase(),e.attr=e.options.attr,e.bindInputFocusEvents=e.options.bindInputFocusEvents,e.showCursor=!e.isInput&&e.options.showCursor,e.cursorChar=e.options.cursorChar,e.cursorBlinking=!0,e.elContent=e.attr?e.el.getAttribute(e.attr):e.el.textContent,e.contentType=e.options.contentType,e.typeSpeed=e.options.typeSpeed,e.startDelay=e.options.startDelay,e.backSpeed=e.options.backSpeed,e.smartBackspace=e.options.smartBackspace,e.backDelay=e.options.backDelay,e.fadeOut=e.options.fadeOut,e.fadeOutClass=e.options.fadeOutClass,e.fadeOutDelay=e.options.fadeOutDelay,e.isPaused=!1,e.strings=e.options.strings.map(function(t){return t.trim()}),e.stringsElement="string"==typeof e.options.stringsElement?document.querySelector(e.options.stringsElement):e.options.stringsElement,e.stringsElement){e.strings=[],e.stringsElement.style.cssText="clip: rect(0 0 0 0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px;";var r=Array.prototype.slice.apply(e.stringsElement.children),o=r.length;if(o)for(var a=0;a<o;a+=1)e.strings.push(r[a].innerHTML.trim())}for(var u in e.strPos=0,e.currentElContent=this.getCurrentElContent(e),e.currentElContent&&e.currentElContent.length>0&&(e.strPos=e.currentElContent.length-1,e.strings.unshift(e.currentElContent)),e.sequence=[],e.strings)e.sequence[u]=u;e.arrayPos=0,e.stopNum=0,e.loop=e.options.loop,e.loopCount=e.options.loopCount,e.curLoop=0,e.shuffle=e.options.shuffle,e.pause={status:!1,typewrite:!0,curString:"",curStrPos:0},e.typingComplete=!1,e.autoInsertCss=e.options.autoInsertCss,e.autoInsertCss&&(this.appendCursorAnimationCss(e),this.appendFadeOutAnimationCss(e))},n.getCurrentElContent=function(t){return t.attr?t.el.getAttribute(t.attr):t.isInput?t.el.value:"html"===t.contentType?t.el.innerHTML:t.el.textContent},n.appendCursorAnimationCss=function(t){var s="data-typed-js-cursor-css";if(t.showCursor&&!document.querySelector("["+s+"]")){var e=document.createElement("style");e.setAttribute(s,"true"),e.innerHTML="\n .typed-cursor{\n opacity: 1;\n }\n .typed-cursor.typed-cursor--blink{\n animation: typedjsBlink 0.7s infinite;\n -webkit-animation: typedjsBlink 0.7s infinite;\n animation: typedjsBlink 0.7s infinite;\n }\n @keyframes typedjsBlink{\n 50% { opacity: 0.0; }\n }\n @-webkit-keyframes typedjsBlink{\n 0% { opacity: 1; }\n 50% { opacity: 0.0; }\n 100% { opacity: 1; }\n }\n ",document.body.appendChild(e)}},n.appendFadeOutAnimationCss=function(t){var s="data-typed-fadeout-js-css";if(t.fadeOut&&!document.querySelector("["+s+"]")){var e=document.createElement("style");e.setAttribute(s,"true"),e.innerHTML="\n .typed-fade-out{\n opacity: 0;\n transition: opacity .25s;\n }\n .typed-cursor.typed-cursor--blink.typed-fade-out{\n -webkit-animation: 0;\n animation: 0;\n }\n ",document.body.appendChild(e)}},e}()),n=new(/*#__PURE__*/function(){function t(){}var s=t.prototype;return s.typeHtmlChars=function(t,s,e){if("html"!==e.contentType)return s;var n=t.substring(s).charAt(0);if("<"===n||"&"===n){var i;for(i="<"===n?">":";";t.substring(s+1).charAt(0)!==i&&!(1+ ++s>t.length););s++}return s},s.backSpaceHtmlChars=function(t,s,e){if("html"!==e.contentType)return s;var n=t.substring(s).charAt(0);if(">"===n||";"===n){var i;for(i=">"===n?"<":"&";t.substring(s-1).charAt(0)!==i&&!(--s<0););s--}return s},t}());/*#__PURE__*/
|
||||
return function(){function t(t,s){e.load(this,s,t),this.begin()}var s=t.prototype;return s.toggle=function(){this.pause.status?this.start():this.stop()},s.stop=function(){this.typingComplete||this.pause.status||(this.toggleBlinking(!0),this.pause.status=!0,this.options.onStop(this.arrayPos,this))},s.start=function(){this.typingComplete||this.pause.status&&(this.pause.status=!1,this.pause.typewrite?this.typewrite(this.pause.curString,this.pause.curStrPos):this.backspace(this.pause.curString,this.pause.curStrPos),this.options.onStart(this.arrayPos,this))},s.destroy=function(){this.reset(!1),this.options.onDestroy(this)},s.reset=function(t){void 0===t&&(t=!0),clearInterval(this.timeout),this.replaceText(""),this.cursor&&this.cursor.parentNode&&(this.cursor.parentNode.removeChild(this.cursor),this.cursor=null),this.strPos=0,this.arrayPos=0,this.curLoop=0,t&&(this.insertCursor(),this.options.onReset(this),this.begin())},s.begin=function(){var t=this;this.options.onBegin(this),this.typingComplete=!1,this.shuffleStringsIfNeeded(this),this.insertCursor(),this.bindInputFocusEvents&&this.bindFocusEvents(),this.timeout=setTimeout(function(){0===t.strPos?t.typewrite(t.strings[t.sequence[t.arrayPos]],t.strPos):t.backspace(t.strings[t.sequence[t.arrayPos]],t.strPos)},this.startDelay)},s.typewrite=function(t,s){var e=this;this.fadeOut&&this.el.classList.contains(this.fadeOutClass)&&(this.el.classList.remove(this.fadeOutClass),this.cursor&&this.cursor.classList.remove(this.fadeOutClass));var i=this.humanizer(this.typeSpeed),r=1;!0!==this.pause.status?this.timeout=setTimeout(function(){s=n.typeHtmlChars(t,s,e);var i=0,o=t.substring(s);if("^"===o.charAt(0)&&/^\^\d+/.test(o)){var a=1;a+=(o=/\d+/.exec(o)[0]).length,i=parseInt(o),e.temporaryPause=!0,e.options.onTypingPaused(e.arrayPos,e),t=t.substring(0,s)+t.substring(s+a),e.toggleBlinking(!0)}if("`"===o.charAt(0)){for(;"`"!==t.substring(s+r).charAt(0)&&(r++,!(s+r>t.length)););var u=t.substring(0,s),p=t.substring(u.length+1,s+r),c=t.substring(s+r+1);t=u+p+c,r--}e.timeout=setTimeout(function(){e.toggleBlinking(!1),s>=t.length?e.doneTyping(t,s):e.keepTyping(t,s,r),e.temporaryPause&&(e.temporaryPause=!1,e.options.onTypingResumed(e.arrayPos,e))},i)},i):this.setPauseStatus(t,s,!0)},s.keepTyping=function(t,s,e){0===s&&(this.toggleBlinking(!1),this.options.preStringTyped(this.arrayPos,this));var n=t.substring(0,s+=e);this.replaceText(n),this.typewrite(t,s)},s.doneTyping=function(t,s){var e=this;this.options.onStringTyped(this.arrayPos,this),this.toggleBlinking(!0),this.arrayPos===this.strings.length-1&&(this.complete(),!1===this.loop||this.curLoop===this.loopCount)||(this.timeout=setTimeout(function(){e.backspace(t,s)},this.backDelay))},s.backspace=function(t,s){var e=this;if(!0!==this.pause.status){if(this.fadeOut)return this.initFadeOut();this.toggleBlinking(!1);var i=this.humanizer(this.backSpeed);this.timeout=setTimeout(function(){s=n.backSpaceHtmlChars(t,s,e);var i=t.substring(0,s);if(e.replaceText(i),e.smartBackspace){var r=e.strings[e.arrayPos+1];e.stopNum=r&&i===r.substring(0,s)?s:0}s>e.stopNum?(s--,e.backspace(t,s)):s<=e.stopNum&&(e.arrayPos++,e.arrayPos===e.strings.length?(e.arrayPos=0,e.options.onLastStringBackspaced(),e.shuffleStringsIfNeeded(),e.begin()):e.typewrite(e.strings[e.sequence[e.arrayPos]],s))},i)}else this.setPauseStatus(t,s,!1)},s.complete=function(){this.options.onComplete(this),this.loop?this.curLoop++:this.typingComplete=!0},s.setPauseStatus=function(t,s,e){this.pause.typewrite=e,this.pause.curString=t,this.pause.curStrPos=s},s.toggleBlinking=function(t){this.cursor&&(this.pause.status||this.cursorBlinking!==t&&(this.cursorBlinking=t,t?this.cursor.classList.add("typed-cursor--blink"):this.cursor.classList.remove("typed-cursor--blink")))},s.humanizer=function(t){return Math.round(Math.random()*t/2)+t},s.shuffleStringsIfNeeded=function(){this.shuffle&&(this.sequence=this.sequence.sort(function(){return Math.random()-.5}))},s.initFadeOut=function(){var t=this;return this.el.className+=" "+this.fadeOutClass,this.cursor&&(this.cursor.className+=" "+this.fadeOutClass),setTimeout(function(){t.arrayPos++,t.replaceText(""),t.strings.length>t.arrayPos?t.typewrite(t.strings[t.sequence[t.arrayPos]],0):(t.typewrite(t.strings[0],0),t.arrayPos=0)},this.fadeOutDelay)},s.replaceText=function(t){this.attr?this.el.setAttribute(this.attr,t):this.isInput?this.el.value=t:"html"===this.contentType?this.el.innerHTML=t:this.el.textContent=t},s.bindFocusEvents=function(){var t=this;this.isInput&&(this.el.addEventListener("focus",function(s){t.stop()}),this.el.addEventListener("blur",function(s){t.el.value&&0!==t.el.value.length||t.start()}))},s.insertCursor=function(){this.showCursor&&(this.cursor||(this.cursor=document.createElement("span"),this.cursor.className="typed-cursor",this.cursor.setAttribute("aria-hidden",!0),this.cursor.innerHTML=this.cursorChar,this.el.parentNode&&this.el.parentNode.insertBefore(this.cursor,this.el.nextSibling)))},t}()});
|
||||
//# sourceMappingURL=typed.umd.js.map
|
||||
1
EnvelopeGenerator.Web/wwwroot/lib/typed.js@2.1.0/dist/typed.umd.js.map
vendored
Normal file
1
EnvelopeGenerator.Web/wwwroot/lib/typed.js@2.1.0/dist/typed.umd.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
257
EnvelopeGenerator.Web/wwwroot/lib/typed.js@2.1.0/index.d.ts
vendored
Normal file
257
EnvelopeGenerator.Web/wwwroot/lib/typed.js@2.1.0/index.d.ts
vendored
Normal file
@ -0,0 +1,257 @@
|
||||
/**
|
||||
* Welcome to Typed.js!
|
||||
* @param {string} elementId HTML element ID _OR_ HTML element
|
||||
* @param {object} options options object
|
||||
* @returns {object} a new Typed object
|
||||
*/
|
||||
|
||||
declare module 'typed.js' {
|
||||
export interface TypedOptions {
|
||||
/**
|
||||
* strings to be typed
|
||||
*/
|
||||
strings?: string[];
|
||||
/**
|
||||
* ID or instance of HTML element of element containing string children
|
||||
*/
|
||||
stringsElement?: string | Element;
|
||||
/**
|
||||
* type speed in milliseconds
|
||||
*/
|
||||
typeSpeed?: number;
|
||||
/**
|
||||
* time before typing starts in milliseconds
|
||||
*/
|
||||
startDelay?: number;
|
||||
/**
|
||||
* backspacing speed in milliseconds
|
||||
*/
|
||||
backSpeed?: number;
|
||||
/**
|
||||
* only backspace what doesn't match the previous string
|
||||
*/
|
||||
smartBackspace?: boolean;
|
||||
/**
|
||||
* shuffle the strings
|
||||
*/
|
||||
shuffle?: boolean;
|
||||
/**
|
||||
* time before backspacing in milliseconds
|
||||
*/
|
||||
backDelay?: number;
|
||||
/**
|
||||
* Fade out instead of backspace
|
||||
*/
|
||||
fadeOut?: boolean;
|
||||
/**
|
||||
* css class for fade animation
|
||||
*/
|
||||
fadeOutClass?: string;
|
||||
/**
|
||||
* Fade out delay in milliseconds
|
||||
*/
|
||||
fadeOutDelay?: number;
|
||||
/**
|
||||
* loop strings
|
||||
*/
|
||||
loop?: boolean;
|
||||
/**
|
||||
* amount of loops
|
||||
*/
|
||||
loopCount?: number;
|
||||
/**
|
||||
* show cursor
|
||||
*/
|
||||
showCursor?: boolean;
|
||||
/**
|
||||
* character for cursor
|
||||
*/
|
||||
cursorChar?: string;
|
||||
/**
|
||||
* insert CSS for cursor and fadeOut into HTML
|
||||
*/
|
||||
autoInsertCss?: boolean;
|
||||
/**
|
||||
* attribute for typing Ex: input placeholder, value, or just HTML text
|
||||
*/
|
||||
attr?: string;
|
||||
/**
|
||||
* bind to focus and blur if el is text input
|
||||
*/
|
||||
bindInputFocusEvents?: boolean;
|
||||
/**
|
||||
* 'html' or 'null' for plaintext
|
||||
*/
|
||||
contentType?: string;
|
||||
/**
|
||||
* Before it begins typing the first string
|
||||
*/
|
||||
onBegin?(self: Typed): void;
|
||||
/**
|
||||
* All typing is complete
|
||||
*/
|
||||
onComplete?(self: Typed): void;
|
||||
/**
|
||||
* Before each string is typed
|
||||
*/
|
||||
preStringTyped?(arrayPos: number, self: Typed): void;
|
||||
/**
|
||||
* After each string is typed
|
||||
*/
|
||||
onStringTyped?(arrayPos: number, self: Typed): void;
|
||||
/**
|
||||
* During looping, after last string is typed
|
||||
*/
|
||||
onLastStringBackspaced?(self: Typed): void;
|
||||
/**
|
||||
* Typing has been stopped
|
||||
*/
|
||||
onTypingPaused?(arrayPos: number, self: Typed): void;
|
||||
/**
|
||||
* Typing has been started after being stopped
|
||||
*/
|
||||
onTypingResumed?(arrayPos: number, self: Typed): void;
|
||||
/**
|
||||
* After reset
|
||||
*/
|
||||
onReset?(self: Typed): void;
|
||||
/**
|
||||
* After stop
|
||||
*/
|
||||
onStop?(arrayPos: number, self: Typed): void;
|
||||
/**
|
||||
* After start
|
||||
*/
|
||||
onStart?(arrayPos: number, self: Typed): void;
|
||||
/**
|
||||
* After destroy
|
||||
*/
|
||||
onDestroy?(self: Typed): void;
|
||||
}
|
||||
|
||||
export default class Typed {
|
||||
constructor(elementId: any, options: TypedOptions);
|
||||
/**
|
||||
* Toggle start() and stop() of the Typed instance
|
||||
* @public
|
||||
*/
|
||||
public toggle(): void;
|
||||
/**
|
||||
* Stop typing / backspacing and enable cursor blinking
|
||||
* @public
|
||||
*/
|
||||
public stop(): void;
|
||||
/**
|
||||
* Start typing / backspacing after being stopped
|
||||
* @public
|
||||
*/
|
||||
public start(): void;
|
||||
/**
|
||||
* Destroy this instance of Typed
|
||||
* @public
|
||||
*/
|
||||
public destroy(): void;
|
||||
/**
|
||||
* Reset Typed and optionally restarts
|
||||
* @param {boolean} restart
|
||||
* @public
|
||||
*/
|
||||
public reset(restart?: boolean): void;
|
||||
cursor: HTMLSpanElement;
|
||||
strPos: number;
|
||||
arrayPos: number;
|
||||
curLoop: number;
|
||||
/**
|
||||
* Begins the typing animation
|
||||
* @private
|
||||
*/
|
||||
private begin;
|
||||
typingComplete: boolean;
|
||||
timeout: any;
|
||||
/**
|
||||
* Called for each character typed
|
||||
* @param {string} curString the current string in the strings array
|
||||
* @param {number} curStrPos the current position in the curString
|
||||
* @private
|
||||
*/
|
||||
private typewrite;
|
||||
temporaryPause: boolean;
|
||||
/**
|
||||
* Continue to the next string & begin typing
|
||||
* @param {string} curString the current string in the strings array
|
||||
* @param {number} curStrPos the current position in the curString
|
||||
* @private
|
||||
*/
|
||||
private keepTyping;
|
||||
/**
|
||||
* We're done typing the current string
|
||||
* @param {string} curString the current string in the strings array
|
||||
* @param {number} curStrPos the current position in the curString
|
||||
* @private
|
||||
*/
|
||||
private doneTyping;
|
||||
/**
|
||||
* Backspaces 1 character at a time
|
||||
* @param {string} curString the current string in the strings array
|
||||
* @param {number} curStrPos the current position in the curString
|
||||
* @private
|
||||
*/
|
||||
private backspace;
|
||||
stopNum: number;
|
||||
/**
|
||||
* Full animation is complete
|
||||
* @private
|
||||
*/
|
||||
private complete;
|
||||
/**
|
||||
* Has the typing been stopped
|
||||
* @param {string} curString the current string in the strings array
|
||||
* @param {number} curStrPos the current position in the curString
|
||||
* @param {boolean} isTyping
|
||||
* @private
|
||||
*/
|
||||
private setPauseStatus;
|
||||
/**
|
||||
* Toggle the blinking cursor
|
||||
* @param {boolean} isBlinking
|
||||
* @private
|
||||
*/
|
||||
private toggleBlinking;
|
||||
cursorBlinking: any;
|
||||
/**
|
||||
* Speed in MS to type
|
||||
* @param {number} speed
|
||||
* @private
|
||||
*/
|
||||
private humanizer;
|
||||
/**
|
||||
* Shuffle the sequence of the strings array
|
||||
* @private
|
||||
*/
|
||||
private shuffleStringsIfNeeded;
|
||||
sequence: any;
|
||||
/**
|
||||
* Adds a CSS class to fade out current string
|
||||
* @private
|
||||
*/
|
||||
private initFadeOut;
|
||||
/**
|
||||
* Replaces current text in the HTML element
|
||||
* depending on element type
|
||||
* @param {string} str
|
||||
* @private
|
||||
*/
|
||||
private replaceText;
|
||||
/**
|
||||
* If using input elements, bind focus in order to
|
||||
* start and stop the animation
|
||||
* @private
|
||||
*/
|
||||
private bindFocusEvents;
|
||||
/**
|
||||
* On init, insert the cursor element
|
||||
* @private
|
||||
*/
|
||||
private insertCursor;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,36 @@
|
||||
{
|
||||
"name": "typed.js",
|
||||
"version": "2.1.0",
|
||||
"homepage": "https://github.com/mattboldt/typed.js",
|
||||
"repository": "https://github.com/mattboldt/typed.js",
|
||||
"license": "MIT",
|
||||
"author": "Matt Boldt",
|
||||
"description": "A JavaScript Typing Animation Library",
|
||||
"type": "module",
|
||||
"source": "src/typed.js",
|
||||
"types": "./index.d.ts",
|
||||
"files": [
|
||||
"dist",
|
||||
"index.d.ts"
|
||||
],
|
||||
"exports": {
|
||||
"require": "./dist/typed.cjs",
|
||||
"import": "./dist/typed.module.js",
|
||||
"types": "./index.d.ts"
|
||||
},
|
||||
"main": "./dist/typed.cjs",
|
||||
"module": "./dist/typed.module.js",
|
||||
"unpkg": "./dist/typed.umd.js",
|
||||
"keywords": [
|
||||
"typed",
|
||||
"animation"
|
||||
],
|
||||
"devDependencies": {
|
||||
"microbundle": "^0.15.1"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "microbundle --name=Typed",
|
||||
"dev": "microbundle --name=Typed watch",
|
||||
"diff": "git diff -- ':^docs'"
|
||||
}
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user