Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/AradAral/Vidazor into main
Browse files Browse the repository at this point in the history
  • Loading branch information
xamir82 committed Dec 16, 2020
2 parents c643fea + 3fdf0dd commit 5fa3787
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
@@ -1,6 +1,6 @@
![Vidazor poster](Poster.svg)

# What Is Vidazor?
# What Is Vidazor? [![NuGet version (Vidazor)](https://img.shields.io/nuget/v/Vidazor.svg?style=flat-square)](https://www.nuget.org/packages/Vidazor/)
Vidazor = Video + Blazor

Vidazor is a Blazor library (RCL) that allows you to seamlessly work with the HTML5 video API, which normally you'd have to work with manually via JS interop.
Expand Down Expand Up @@ -65,7 +65,7 @@ Vidazor provides nearly all the methods, properties, and events that the JavaScr
- [Events](#events)

## Methods:
The following methods can be called easily through the `Vidazor` object:
The following methods can be called easily through the `VidazorVideo` object:
| Vidazor Method | JavaScript Equivalent | Description |
| :--- | :--- | :--- |
| `.Play()` | [`.play()`](https://www.w3schools.com/tags/av_met_play.asp) | Plays the video playback. |
Expand All @@ -74,7 +74,7 @@ The following methods can be called easily through the `Vidazor` object:
| `.CanPlayType(string)` | [`.canPlayType(string)`](https://www.w3schools.com/tags/av_met_canplaytype.asp) | Checks if the browser can play a video with the specified MIME media type. |

## Properties:
The following properties can be accessed easily through the `Vidazor` object:
The following properties can be accessed easily through the `VidazorVideo` object:
| Vidazor Property | Data Type | Get & Set | JavaScript Equivalent | Description |
| :--- | :--- | :--- | :--- | :--- |
| `.Autoplay` | `bool` || [`.autoplay`](https://www.w3schools.com/tags/av_prop_autoplay.asp) | Gets or sets a Boolean indicating whether playback automatically begins as soon as enough of the video is available to do so without interruption. |
Expand Down

0 comments on commit 5fa3787

Please sign in to comment.