Found 10483 Articles for Web Development

How to Create Image Bullets in HTML

Aman Gupta
Updated on 02-Dec-2024 16:24:56

3K+ Views

Overview In HTML we can create the list in two types which are of ordered list and unordered list. So when the lists are created these are followed up with the numbering, alphabet or roman numbers in the ordered list and in the unordered list as dots. So sometimes we need to change these bullets with an image. This can be achieved using the Cascading Styles Sheet (CSS) styling property list-style-image. By using any image url or an image address we can set it to the value of list-style-image which will show as a bullet before the list items. In ... Read More

How to create Area Chart using CSS

Aman Gupta
Updated on 09-May-2023 16:38:13

320 Views

Overview An area cart is used to represent the data set into the graphical form. By using the HTML and CSS we can create an area chart. So for this we will create two custom variables as start and end. The custom variable can be created using this symbol “--” and following up with a variable name. For example, creating the variable like: –width, --height and –start. Algorithm Step 1 − Create a HTML file and open that file in a text editor. Add the HTML boilerplate to the HTML file. Step 2 − Now create a parent div container with ... Read More

How to Create the Animated Loader Ring using HTML and CSS?

Aman Gupta
Updated on 09-May-2023 16:37:27

672 Views

Overview A loader is a web component which is used by almost all of the web applications. To build a loader ring we should have some prior knowledge about Cascading Styles Sheet (CSS) as the CSS involves the styling and animating part of the loader ring. As the loader component is loaded before the original content loads to the web page. The main styling properties that will be used to build this feature are animation, transition and keyframes. These three CSS properties will make a simple static animation loading ring to the animated loader ring. Algorithm Step 1 − Create ... Read More

How to create an Animated bars using HTML and CSS?

Aman Gupta
Updated on 09-May-2023 15:56:17

1K+ Views

Overview Animated bars are the graphically animated bars which are created using HTML and CSS. The layout of the animated bars are created using HTML and the styling of the bars are made using CSS. The normal bars can be created normally but we have to create the bars with animation so we will be using the CSS transition animation properties to make it animated. We will be building an animated bar same as the music animated bars synchronizer. Algorithm Step 1 − Create a HTML file in your text editor and add the HTML boilerplate in it. Step 2 − Now ... Read More

How to create a working slider using HTML and CSS?

Aman Gupta
Updated on 09-May-2023 15:54:33

4K+ Views

Overview A slider is a component which makes a slideshow like animation when the forward and backward navigation buttons are clicked. A slider consists of different images in an order one after another. We can create this working slider using HTML and CSS. So in the CSS we will be using the nth child selector to make the slider working. The nth child selector will select the particular child from the parent div and will make the image display on the front page. Algorithm Step 1 − Create an index.html file in a folder and open it in a text ... Read More

How to Create Wave Image for a Background using HTML and CSS

Aman Gupta
Updated on 09-May-2023 15:52:15

2K+ Views

Overview To build the wave image background, here the main role play is of Cascading Styles Sheet (CSS) as without any use of svg or png image we will be going to create a wave image background that can be used for the web pages background. So to build this component you should have a good understanding of CSS as to build this component we are going to use the CSS position property and the before and after selector. So using these properties and selector we can achieve the deployment of the wave image background. Algorithm Step 1 − Create a HTML ... Read More

How to reverse array of DOM elements using jQuery?

Abhishek
Updated on 08-May-2023 16:36:58

688 Views

The array of DOM elements is an array of same multiple elements or of those elements which contains same class or the selecting attribute. Our task is to reverse an array of DOM elements using jQuery. There will be a lot of ways to reverse an array of DOM elements. But, in this article, we are going to discuss about the two methods to reversing and array of DOM elements. By using a for loop By using the reverse() method Let us now discuss both of these methods in details by practically implementing them with the help of ... Read More

How to retrieve stored value from div element using jQuery?

Abhishek
Updated on 08-May-2023 16:38:44

1K+ Views

In some situations, we need to retrieve or get the text value stored inside a particular div element to use some condition, if the text is dynamic or for some other tasks in jQuery. By getting the value stored in the div element, we can perform any task based on the value of the element in jQuery. In jQuery, we can retrieve or get the stored value of a div element using three different methods. The methods are listed below − By using the text() method By using the html() method Let us now understand working of each ... Read More

How to make the cursor to hand when a user hovers over a list item using CSS?

Abhishek
Updated on 08-May-2023 16:40:25

238 Views

In general, if we hover or take the cursor over an element in HTML document the cursor by default appears as an arrow or a selector if we hover it over a text. But, we can change the behaviour of the cursor on hover to selected elements to any type of available cursor types using the CSS property. Let us now discuss and understand how you can change the behaviour of the cursor on hover to any particular element using the :hover state and the cursor property of CSS. Cursor Property The cursor property in CSS comes with a lot ... Read More

How to add a custom right-click menu to a webpage?

Abhishek
Updated on 08-May-2023 16:42:59

3K+ Views

In today’s time, when you right click on any web page there will be a list of some with some options and functionality pops up. This popup menu is also known as the context menu which is a default popup menu given by browser. The items in the list of this menu varies in different browsers. Some browsers provide more functionality while some provides limited. But here’s a way to add your own custom context menu or the right click menu on your web page with as much as options as you want. But before adding the custom context menu, ... Read More

Advertisements