Found 10483 Articles for Web Development

How to call a function with Mouse hover in VueJS?

Mayank Agarwal
Updated on 13-Apr-2023 16:35:05

2K+ Views

While hovering over a div or an element sometimes we require to display some information. This information or data is displayed while hovering over it with the mouse. Therefore, to display this data, we basically use the JS function @mouseover to display data. In the above specific case, we will make the mouseover function which will return data on hover. Please look at the below example for more clarification. Syntax Following is the syntax to call a function with mouse hover in Vue.js − mouseOver: function(){ this.active = !this.active; } Here mouseOver ... Read More

How to bind the background image in Vue.js?

Mayank Agarwal
Updated on 13-Apr-2023 16:33:52

7K+ Views

The value for v-bind:style is just a plain JavaScript object that works upon some rules for binding the content. The value of the background image should be a string. So we can apply or data-bind the background image in Vue.js using the style tag and then defining the backgroundImage URL in it. It will automatically retrieve the url from the string and then display the same data content on the browser webpage. To access the background image, make a div element and define the background image in it with url. The url will be retrieved from the JS file. Example ... Read More

How to bind attributes in VueJS?

Mayank Agarwal
Updated on 13-Apr-2023 16:32:38

2K+ Views

The v-bind directive in VueJS can be used for binding one or more attributes, or a component prop to an element. If the attribute is bonded towards our data that is defined in the Vue instance, then we can observe these data changes dynamically since the attributes are binded. To apply the v-bind directive, we will first create a div element with id ‘app’. Once the div element is created, we can apply the v-on: click.middle directive to the element. Syntax We can use the following syntax to bind attributes in Vue.js − v-bind:attribute = "expression" Here "expression" ... Read More

How to apply Switch in Vue using Filters?

Mayank Agarwal
Updated on 13-Apr-2023 16:31:06

845 Views

Vue can be defined as a progressive framework for building the user interfaces. It has multiple directives that can be used as per the user needs. The basic core library is mainly focused on building the view layer only and is also easy to pick up other libraries or integrate with them. The vue components provides the filter functionality to filter out the requests and response that lets the user to apply different formatting and transformations to the template dynamic data. Filters are used in two places : mustache interpolation and v-bind expressions. Functions are appended in the end of ... Read More

How to add or apply global variables in Vue.js?

Mayank Agarwal
Updated on 13-Apr-2023 16:29:26

5K+ Views

In a Vue.js application there may be data or utilities that are used in many components, but you don’t want to change its scope and keep its value same for all the components. These types of variables are called the global variables. In such cases, the user can use the following syntax for defining the prototype − Vue.prototype.$appName = 'My App' Now this $appName will be available on all the Vue instances, even before creation. The $ defined before the appName is the convention used for properties that are available to all the instances. The user can also ... Read More

Callback Functions for video.js Player

Prince Yadav
Updated on 13-Apr-2023 16:07:05

2K+ Views

In this tutorial, we'll learn about the various event listeners and how to use them with callback functions for a video.js player. Video.js is a popular, open-source library used for creating video players in browsers. Using video.js you can tweak every single part of a video player without much problems or hassle. Aside from that, video.js provides a plethora of default events like play, pause, playing, loadedmetadata, timeupdate, canplaythrough, loadeddata etc. So, for the purpose of this tutorial, we're going to learn about the callback functions of various event listeners in video.js. Callback functions are really crucial as they are ... Read More

How to initially mute videos in the video.js player?

Prince Yadav
Updated on 13-Apr-2023 16:11:10

2K+ Views

In this tutorial, we're going to learn how to initially mute videos in the video.js player. For this tutorial, we're not going to make use of the standard HTML tags like 'muted' which are available for a video element, instead, we're going to use the method specific to video.js. So, let's move on to the subsequent section of this tutorial and understand how to initially mute videos in the video player using just video.js. For muting the videos of our video.js player, we'll make use of the 'muted' method and 'volume' method provided by video.js. We can make use ... Read More

Setting Up Full Video Background using video.js

Prince Yadav
Updated on 13-Apr-2023 16:12:59

2K+ Views

Video.js is a powerful tool for working with video on the web, providing a common interface for different types of video players including HTML5, Flash, and others. It is designed to be easy to use and customize, with a wide range of options for controlling the look and feel of the player. In this tutorial, we will show how you can set up a full video background for a video player using this open-source JavaScript library called video.js. For the purpose of this tutorial, we will focus on how to set up a full video background using video.js. This can ... Read More

Video.js – Callback a Function in the Event that a Video is 50% Buffered

Prince Yadav
Updated on 13-Apr-2023 16:05:06

1K+ Views

In this tutorial, we will show how you can get the buffer percentage of a video in video.js and use a callback function when the video has buffered more than 50%. Video.js is a well-known online video player JavaScript toolkit that is used to create web browser video players for a range of video formats. Video.js is a very flexible and customizable library to create modern web video players. It supports a wide range of packages, plugins, and options. Using video.js any part of an HTML video player can be configured as per your liking. For the purpose of this ... Read More

How to create Mini Fieldcontain flip toggle switch using jQuery Mobile?

Aayush Mohan Sinha
Updated on 13-Apr-2023 16:07:23

195 Views

The development of intuitive and user-friendly interfaces is an integral facet of contemporary web design. As web technologies persist in evolving, programmers must keep pace with the latest patterns and resources to offer users the optimal experience. One popular solution for creating interactive mobile-friendly interfaces is jQuery Mobile, a user interface framework built on top of the jQuery library. In this article, we will explore the process of creating a Mini Fieldcontain flip toggle switch using jQuery Mobile. By the end of this tutorial, you will have a solid understanding of how to use jQuery Mobile to create this unique ... Read More

Advertisements