Hello there, today I met a situation where I had to change the animation of a bootstrap 4 modal and figured out this solution. I added a zoom-in animation with a playtime of 1.5 seconds to the modal. Please have a look at it in the demo below. DEMO Open demo in a full...
I have been into many situations while converting designs to HTML where designs demanded a custom select menu. There is a simple solution to this by W3Schools. You can copy and modify what’s needed without getting deep down to the basics and mechanism. DEMO See...
instagram feed Hello guys, here’s a way I found to add an Instagram feed widget with load more button to your website. Please have a look at the demo below with HTML and JS included. This was made possible with the help of a JS plugin –...
Custom Select Tag Arrow Here is how you can add a custom arrow to a “select” HTML tag by simply adding a ‘background-image’ and ‘appearance: none’ with CSS. DEMO Open demo in a full window –...
Yes, you can use multiple versions of jQuery on the same page. To avoid any kind of conflict, use the jQuery.noConflict() method. HTML <html> <head> <script...
disable user selection on web page elements You can use this style to your web page element if you do not want a user to select it using pointer cursor and that content selected background blue/grey color. CSS .disable-user-seclect{ webkit-user-select: none;...