Jquery Archives - csshint - A designer hub https://csshint.com/category/jquery/ Sun, 23 Apr 2023 16:46:33 +0000 en-US hourly 1 https://wordpress.org/?v=6.3.4 Rainbow Mouse Trail https://csshint.com/rainbow-mouse-trail/ Sun, 23 Apr 2023 16:46:33 +0000 https://csshint.com/?p=8348 How to create Rainbow Mouse Trail using html css and js. Designed by Marjo Sobrecaray a codepen user. See the Pen Rainbow Mouse Trail (using dom elements) by Marjo Sobrecaray (@maaarj) on CodePen. HTML <p>move your mouse</p> CSS (SCSS) @import url('https://fonts.googleapis.com/css?family=Paytone+One'); @import 'compass/css3'; body,html { background:#060a19; width:100%; height: 100%; overflow:hidden; font-family: Paytone One; } @mixin […]

The post Rainbow Mouse Trail appeared first on csshint - A designer hub.

]]>
How to create Rainbow Mouse Trail using html css and js. Designed by Marjo Sobrecaray a codepen user.

Rainbow Mouse Trail

HTML

<p>move your mouse</p>

CSS (SCSS)

@import url('https://fonts.googleapis.com/css?family=Paytone+One');
@import 'compass/css3';

body,html {
     background:#060a19;
     width:100%;
     height: 100%;
     overflow:hidden;
     font-family: Paytone One;
}
@mixin keyframes($animationName) {
  @-webkit-keyframes #{"$animationName"} {
    @content;
  }
  @-moz-keyframes #{$animationName} {
    @content;
  }

  @-ms-keyframes #{$animationName} {
    @content;
  }

  @keyframes #{$animationName} {
    @content;
  }
}
p {
     color: #fff;
     background: #000;
     mix-blend-mode: lighten;
     font-size:30px;
     text-align: center;
     position: absolute;
     left:0;
     right: 0;
     top:0;
     bottom: 0;
     margin:auto;
     height: 100px;
     @include animation(filterHue2 2s linear infinite);
     
     &::before {
          content: '';
          display: block;
          position: absolute;
          top: 0;
          right: 0;
          bottom: 0;
          left: 0;
          background: #e23b4a; //fallback
          @include background(linear-gradient(to right,#23966c, #faaa54, #e23b4a, #db0768, #360670));
          pointer-events: none;
          mix-blend-mode: multiply;
     }
}

.loader-container {
     width:100px;
     height:100px;
     position: absolute;
     @include animation(scaleUp .5s linear);
     @include transform(scale(0));
     opacity: 0;
     .loader {
          background: #ff0c0c;
          @include background(linear-gradient(50deg,#ff0c0c,#21d400));
          border-radius:10px;
          @include filter(hue-rotate(0deg));
          animation: filterHue 2.5s linear infinite;
          height:100%;
          width: 100%;
          transform:rotate(0deg);
          &::after {
               content:'';
               position:absolute;
               height: 80px;
               width:80px;
               left:10px;
               top:10px;
               border-radius: 100%;
          }
     }
}

@include keyframes(filterHue2) {
     50%{@include filter(hue-rotate(1000deg));}
     100% {@include filter(hue-rotate(2000deg)); }
}

@include keyframes(filterHue) {
     50%{@include filter(hue-rotate(1000deg));}
     100% {@include filter(hue-rotate(2000deg));
     @include transform(rotate(360deg));}
}
@include keyframes(scaleUp) {
     50%{@include transform(scale(0.5));opacity: 1}
     100% {@include transform(scale(0.25));}
}


@supports (-ms-ime-align: auto) {
  p {
    color: #21d400;
    background: transparent;
    mix-blend-mode: lighten;
    font-size: 30px;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 100px;
    @include animation(filterHue2 2s linear infinite);
  }
  p::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: transparent;
  }
}


@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
     p {
          color: #ff447c;
          background: transparent;
          mix-blend-mode: lighten;
          font-size: 30px;
          text-align: center;
          position: absolute;
          left: 0;
          right: 0;
          top: 0;
          bottom: 0;
          margin: auto;
          height: 100px;
          @include animation(filterHue2 2s linear infinite);
     }
     p::before {
          content: '';
          display: block;
          position: absolute;
          top: 0;
          right: 0;
          bottom: 0;
          left: 0;
          background: transparent;
     }
     
     .loader {
          @include background(linear-gradient(50deg,rgba(240, 0, 80, 1),#2380ff) !important); 
     }
}

JS

window.addEventListener("mousemove", function (e) {
     var to_append = document.getElementsByClassName('loader-container')[0];
     var all = document.getElementsByClassName('loader-container');

     var parent_div = document.createElement('div');
     parent_div.className = "loader-container";
     var inner_div = document.createElement('div');
     inner_div.className = "loader";
     parent_div.appendChild(inner_div)
     var d = document.body.appendChild(parent_div);

     parent_div.style.left = (e.clientX - 50)+'px';
     parent_div.style.top = (e.clientY - 50)+'px';

     if(document.getElementsByClassName('loader-container').length > 50) {
          document.body.removeChild(to_append)
     }
});

 

The post Rainbow Mouse Trail appeared first on csshint - A designer hub.

]]>
12+ jQuery Hover Effects https://csshint.com/jquery-hover-effects/ Sun, 09 Apr 2023 08:51:21 +0000 https://csshint.com/?p=7749 Latest Collection of 100% free jQuery Hover Effect code examples from Codepen and other resources. GSAP: Cursor Hover Effect Author roeslein Made with HTML / CSS (SCSS) / JS Demo / Code Get Hosting Item Background Move Author Wikyware Net Made with HTML / CSS / JS Demo / Code Get Hosting Elastic Hover Author […]

The post 12+ jQuery Hover Effects appeared first on csshint - A designer hub.

]]>
Latest Collection of 100% free jQuery Hover Effect code examples from Codepen and other resources.

Splash Page Hover Stuff | #jQuery #CSS

Splash Page Hover Stuff | #jQuery #CSS

Author

  • Joshua Ward

Made with

  • HTML (Pug) / CSS (SCSS) / JS

Demo / Code Get Hosting

ubtle 3D Rotation Image Distortion

Subtle 3D Rotation Image Distortion

Author

  • Pete Barr

Made with

  • HTML / CSS (SCSS) / JS

Demo / Code Get Hosting



hoverSlippery

Author

  • Mogeli lortkipanidze

Made with

  • HTML / CSS / JS

Demo / Code Get Hosting


#1566 – Image Hover

Author

  • Littlesnippets.net

Made with

  • HTML / CSS / JS

Demo / Code Get Hosting

The post 12+ jQuery Hover Effects appeared first on csshint - A designer hub.

]]>
10 jQuery Notifications https://csshint.com/jquery-notifications/ Thu, 27 Jan 2022 07:08:38 +0000 http://csshint.com/?p=7072 Latest Collection of 100% free jQuery Notification code examples from Codepen. Alert Components Author Lucas Oliveira Made with HTML / CSS (SCSS) / JS Demo / Code Get Hosting Notification Badge Animation Author Valery Alikin Made with HTML / CSS (SCSS) / JS Demo / Code Get Hosting Notification Author Souleste Made with HTML / […]

The post 10 jQuery Notifications appeared first on csshint - A designer hub.

]]>
Latest Collection of 100% free jQuery Notification code examples from Codepen.

Alert Components

Alert Components


Alert Components

Author

  • Lucas Oliveira

Made with

  • HTML / CSS (SCSS) / JS

Demo / Code Get Hosting

Notification Badge Animation

Notification Badge Animation


Notification Badge Animation

Author

  • Valery Alikin

Made with

  • HTML / CSS (SCSS) / JS

Demo / Code Get Hosting

bell notification animation

bell notification animation


bell notification animation

Author

  • Diogo Gomes

Made with

  • HTML / CSS (SCSS) / JS

Demo / Code Get Hosting

Toast Messages + Remove Animation

Toast Messages + Remove Animation


Toast Messages + Remove Animation

Author

  • Veronica

Made with

  • HTML / CSS / JS

Demo / Code Get Hosting

Notification Animation

Notification Animation


Notification Animation

Author

  • Halil İbrahim Nuroğlu

Made with

  • HTML / CSS (SCSS) / JS

Demo / Code Get Hosting

CSS-only Notifications Component

CSS-only Notifications Component


CSS-only Notifications Component

Author

  • Damián Muti

Made with

  • HTML / CSS (SCSS) / JS

Demo / Code Get Hosting

Notifications

Author

  • Hampus Persson

Made with

  • HTML / CSS (SCSS) / JS

Demo / Code Get Hosting

Notifications, Alerts, Modals

Author

  • DevTips

Made with

  • HTML (Pug) / CSS (Sass) / JS

Demo / Code Get Hosting

Evil Cookie Policy

Author

  • Álex

Made with

  • HTML / CSS / JS

Demo / Code Get Hosting

The post 10 jQuery Notifications appeared first on csshint - A designer hub.

]]>
10 jQuery Context Menus https://csshint.com/jquery-context-menus/ Fri, 26 Nov 2021 07:34:55 +0000 http://csshint.com/?p=6822 Latest Collection of 100% free jQuery Context Menu examples from Codepen. Cut/Copy/Paste Author Adam Kuhn Made with HTML (Haml), CSS (SCSS), JS Demo / Code Get Hosting Material Design Context Menu Author Selim Doyranlı Made with HTML (Pug), CSS (SCSS), JS Demo / Code Get Hosting ContextMenu Author Aravind Made with HTML, CSS, JS Demo […]

The post 10 jQuery Context Menus appeared first on csshint - A designer hub.

]]>
Latest Collection of 100% free jQuery Context Menu examples from Codepen.

Cut Copy Paste.jpg

Cut Copy Paste.jpg


Cut/Copy/Paste

Author

  • Adam Kuhn

Made with

  • HTML (Haml), CSS (SCSS), JS

Demo / Code Get Hosting

Material Design Context Menu

Material Design Context Menu


Material Design Context Menu

Author

  • Selim Doyranlı

Made with

  • HTML (Pug), CSS (SCSS), JS

Demo / Code Get Hosting

Custom Webpage Context Menu JS

Custom Webpage Context Menu JS


Custom Webpage Context Menu JS

Author

  • X-49

Made with

  • HTML, CSS, JS

Demo / Code Get Hosting

Material context menu grid

Material context menu grid


Material context menu grid

Author

  • Irem Lopsum

Made with

  • HTML, CSS (SCSS), JS

Demo / Code Get Hosting

Custom Context Menu

Custom Context Menu


Custom Context Menu

Author

  • Akshay Nair

Made with

  • HTML, CSS (SCSS), JS

Demo / Code Get Hosting

Right Click Menu context.jpg

Right Click Menu context.jpg


Right Click Menu [context]

Author

  • adobewordpress

Made with

  • HTML, CSS, JS

Demo / Code Get Hosting

Social-Share Context menu

Social-Share Context menu


Social-Share Context menu

Author

  • Deepak Kamat

Made with

  • HTML, CSS, JS

Demo / Code Get Hosting

Right-click context menu

Right-click context menu


Right-click context menu

Author

  • Zeke Y

Made with

  • HTML, CSS (SCSS), JS

Demo / Code Get Hosting

UI Experiment — Context Menu

UI Experiment — Context Menu


UI Experiment — Context Menu

Author

  • James Michael

Made with

  • HTML, CSS, JS

Demo / Code Get Hosting

The post 10 jQuery Context Menus appeared first on csshint - A designer hub.

]]>
10+ jQuery Sliding Menus https://csshint.com/jquery-sliding-menus/ Mon, 22 Nov 2021 06:16:23 +0000 http://csshint.com/?p=6788 Latest Collection of 100% free jQuery sliding menu examples from Codepen. Simple sliding menu Author Romain Chemartin Made with HTML, CSS, JS Demo / Code Get Hosting Side Menu Animation Author Jordan Made with HTML, CSS, JS Demo / Code Get Hosting off canvas menu Author ahmed beheiry Made with HTML, CSS, JS Demo / […]

The post 10+ jQuery Sliding Menus appeared first on csshint - A designer hub.

]]>
Latest Collection of 100% free jQuery sliding menu examples from Codepen.

Simple sliding menu

Simple sliding menu


Simple sliding menu

Author

  • Romain Chemartin

Made with

  • HTML, CSS, JS

Demo / Code Get Hosting

Menu Shelf and Logo to Hamburger Animation

Menu Shelf and Logo to Hamburger Animation


Menu Shelf and Logo to Hamburger Animation

Author

  • Alex Coven

Made with

  • HTML, CSS, JS

Demo / Code Get Hosting

SVG Gooey Hover Menu Concept

SVG Gooey Hover Menu Concept


SVG Gooey Hover Menu Concept

Author

  • Michael Leonard

Made with

  • HTML, CSS, JS

Demo / Code Get Hosting

Multi-layer sliding navigation

Multi-layer sliding navigation


Multi-layer sliding navigation

Author

  • Nick Spiel

Made with

  • HTML, CSS, JS

Demo / Code Get Hosting

Slide In Panel - Off Canvas Navigation

Slide In Panel – Off Canvas Navigation


Slide In Panel – Off Canvas Navigation

Author

  • creotip

Made with

  • HTML, CSS, JS

Demo / Code Get Hosting

Off-Canvas Menu

Off-Canvas Menu


Off-Canvas Menu

Author

  • Ophelia Fournier-Laflamme

Made with

  • HTML, CSS, JS

Demo / Code Get Hosting

The post 10+ jQuery Sliding Menus appeared first on csshint - A designer hub.

]]>
20 jQuery Accordions https://csshint.com/jquery-accordions/ Thu, 30 Sep 2021 12:00:23 +0000 http://csshint.com/?p=6685 Latest Collection of 100% free vertical and horizontal jQuery Accordion examples from Codepen. Dropdown Vorteile Author Marlon Made with HTML, CSS, JS Demo / Code Get Hosting See the Pen Custom Accordion for Right by John Hubler (@johnhubler) on CodePen. Custom Accordion for Right Author John Hubler Made with HTML, CSS, JS Demo / Code […]

The post 20 jQuery Accordions appeared first on csshint - A designer hub.

]]>
Latest Collection of 100% free vertical and horizontal jQuery Accordion examples from Codepen.

Custom Accordion for Right

Author

  • John Hubler

Made with

  • HTML, CSS, JS

Demo / Code Get Hosting

Accordion Scroll Top

Author

  • Radoslav

Made with

  • HTML, CSS, JS

Demo / Code Get Hosting

SSS Accordion and Google Schema

Author

  • Ahmet Aksungur

Made with

  • HTML, CSS, JS

Demo / Code Get Hosting

jQuery Accordion with Arrow (No Bootstrap)

Author

  • Niko

Made with

  • HTML, CSS, JS

Demo / Code Get Hosting

Simple Sliding Accordion

Simple Sliding Accordion


Simple Sliding Accordion

Author

  • rajeshdn

Made with

  • HTML, CSS, JS

Demo / Code Get Hosting

accordion slider

Author

  • さおさん

Made with

  • HTML, CSS, JS

Demo / Code Get Hosting

Accordion on html “Details” with close button

Author

  • Andrej Sharapov

Made with

  • HTML, CSS, JS

Demo / Code Get Hosting

Simple responsive jQuery accordion

Author

  • Shaun MacDougall

Made with

  • HTML, CSS, JS

Demo / Code Get Hosting

#CodePenChallenge – dt & dd – Trending Words

Author

  • Halida Astatin

Made with

  • HTML, CSS, JS

Demo / Code Get Hosting

CSS-JS Multi-level Accordion

CSS-JS Multi-level Accordion


CSS-JS Multi-level Accordion

Author

  • Gab Shirohige

Made with

  • HTML, CSS, JS

Demo / Code Get Hosting

app meteo animation css ease

Author

  • Sergio

Made with

  • HTML, CSS, JS

Demo / Code Get Hosting

jQuery accordion menu

Author

  • duke

Made with

  • HTML, CSS, JS

Demo / Code Get Hosting

jQuery Accordion Navigation Menu

Author

  • James Thomas Almond

Made with

  • HTML, CSS, JS

Demo / Code Get Hosting

4 lines jQuery accordion

Author

  • Johan Mouchet

Made with

  • HTML, CSS, JS

Demo / Code Get Hosting

Accordion Profile

Author

  • Mohan Khadka

Made with

  • HTML, CSS, JS

Demo / Code Get Hosting

jQuery Accordion

Author

  • Vikas Verma

Made with

  • HTML, CSS, JS

Demo / Code Get Hosting

Sassy Accordion

Author

  • Jeremy Hawes

Made with

  • HTML, CSS, JS

Demo / Code Get Hosting

Simple sass/jQuery Accordion

Author

  • Jon Stuebe

Made with

  • HTML, CSS, JS

Demo / Code Get Hosting

The post 20 jQuery Accordions appeared first on csshint - A designer hub.

]]>
Fake Hacking Program https://csshint.com/fake-hacking-program/ Mon, 06 Sep 2021 04:56:15 +0000 http://csshint.com/?p=6450 Check out this Fake Hacking Program Using css and js. This snippet by Chase Kaiser a codepen user. Fake Hacking Program Snippet See the Pen Fake Hacking Program by Chase Kaiser (@chasekaiser) on CodePen.

The post Fake Hacking Program appeared first on csshint - A designer hub.

]]>
Check out this Fake Hacking Program Using css and js. This snippet by Chase Kaiser a codepen user.

Fake Hacking Program

Fake Hacking Program


Fake Hacking Program Snippet

The post Fake Hacking Program appeared first on csshint - A designer hub.

]]>
Spacebar counter https://csshint.com/spacebar-counter/ Mon, 06 Sep 2021 04:51:24 +0000 http://csshint.com/?p=6446 Check out this Spacebar counter Using css and js. This snippet by Murilo Polese a codepen user. Spacebar counter Snippet See the Pen Spacebar counter by Murilo Polese (@murilopolese) on CodePen.

The post Spacebar counter appeared first on csshint - A designer hub.

]]>
Check out this Spacebar counter Using css and js. This snippet by Murilo Polese a codepen user.

Spacebar counter

Spacebar counter


Spacebar counter Snippet

The post Spacebar counter appeared first on csshint - A designer hub.

]]>
12 Creative Animation Demos Using CSS and JavaScript https://csshint.com/animation-demos-using-css-and-javascript/ Fri, 03 Sep 2021 05:42:32 +0000 http://csshint.com/?p=6425 Latest Collection of free Creative Animation Demos Using CSS and JavaScript Example and download Zip: See the Pen Animated Tab Bar by abxlfazl khxrshidi (@abxlfazl) on CodePen. Animated Tab Bar Author abxlfazl khxrshidi Made with HTML / CSS / JS Demo / Code Get Hosting See the Pen Space globe – Three.js by isladjan (@isladjan) […]

The post 12 Creative Animation Demos Using CSS and JavaScript appeared first on csshint - A designer hub.

]]>
Latest Collection of free Creative Animation Demos Using CSS and JavaScript Example and download Zip:

Animated Tab Bar

Author

  • abxlfazl khxrshidi

Made with

  • HTML / CSS / JS

Demo / Code Get Hosting

Space globe – Three.js

Author

  • isladjan

Made with

  • HTML / CSS / JS

Demo / Code Get Hosting

NEON LOVE

Author

  • al-ro

Made with

  • HTML / CSS / JS

Demo / Code Get Hosting

Fluid text hover

Author

  • Robin Delaporte

Made with

  • HTML / CSS (SCSS) / JS (Babel)

Demo / Code Get Hosting

Realistic Red Switch (Pure CSS)

Author

  • Yoav Kadosh

Made with

  • HTML(Pug) / CSS (SCSS)

Demo / Code Get Hosting

GSAP ScrollTrigger – Demo

Author

  • Noel Delgado

Made with

  • HTML(Haml) / CSS (POSTCSS) / JS (Babel)

Demo / Code Get Hosting

Parallax scroll animation

Author

  • isladjan

Made with

  • HTML / CSS / JS

Demo / Code Get Hosting

CSS Goey footer

Author

  • Zed Dash

Made with

  • HTML (Pug) / CSS (SCSS)

Demo / Code Get Hosting

Simple CSS Waves | Mobile & Full width

Author

  • Goodkatz

Made with

  • HTML / CSS

Demo / Code Get Hosting

Drip Drop Animation (No JS)

Author

  • Adib Behjat

Made with

  • HTML / CSS

Demo / Code Get Hosting

Creative CSS Animation Effects CSS3 Neumorphism

Author

  • samuel garcia

Made with

  • HTML / CSS (SCSS)

Demo / Code Get Hosting

Variable font animation

Author

  • Michelle Barker

Made with

  • HTML / CSS / JS

Demo / Code Get Hosting

The post 12 Creative Animation Demos Using CSS and JavaScript appeared first on csshint - A designer hub.

]]>
16+ jQuery Music Players https://csshint.com/jquery-music-players/ Tue, 13 Jul 2021 05:00:04 +0000 http://csshint.com/?p=6167 Latest Collection of free and Open Source jQuery music player code examples and download Zip: 1. Simple Music App UI Design 🎵▶️ Author Aysenur Turk Made with HTML / CSS (SCSS) / JS Demo / Code Get Hosting 2. Music Player UI Author Aybüke Ceylan Made with HTML / CSS (SCSS) / JS Demo / […]

The post 16+ jQuery Music Players appeared first on csshint - A designer hub.

]]>
Latest Collection of free and Open Source jQuery music player code examples and download Zip:

Simple Music App UI Design

Simple Music App UI Design


1. Simple Music App UI Design 🎵▶

Author

  • Aysenur Turk

Made with

  • HTML / CSS (SCSS) / JS

Demo / Code Get Hosting

Music Player UI

Music Player UI


2. Music Player UI

Author

  • Aybüke Ceylan

Made with

  • HTML / CSS (SCSS) / JS

Demo / Code Get Hosting

Music Player  Audio Player

Music Player Audio Player


3. Music Player | Audio Player 🎵

Author

  • Himalaya Singh

Made with

  • HTML / CSS / JS

Demo / Code Get Hosting

Jquery Music Player

Jquery Music Player


4. Music Player 2.0

Author

  • Emil

Made with

  • HTML / CSS (SCSS) / JS

Demo / Code Get Hosting

5. Lyrics Player

Author

  • Zed Dash

Made with

  • HTML / CSS (SCSS) / JS

Demo / Code Get Hosting

6. Music Player With Lyrics

Author

  • Jyotirmoy Barman

Made with

  • HTML / CSS / JS ​

Demo / Code Get Hosting

7. Music Player

Author

  • XiChen

Made with

  • HTML (Pug) / CSS (Sass) / JS (CoffeeScript) ​

Demo / Code Get Hosting

8 Music Player Jquery

Author

  • Andre Wichert

Made with

  • HTML / CSS (SCSS) / JS ​​

Demo / Code Get Hosting

9 Mini Music Player

Author

  • Amit Soni

Made with

  • HTML / CSS / JS ​​

Demo / Code Get Hosting

10 Skeuomorphic Audio Player

Author

  • Josh Bader

Made with

  • HTML / CSS / JS ​​

Demo / Code Get Hosting

11 Phish Music Player

Author

  • Matthew Greenberg ​

Made with

  • HTML (Pug) / CSS (Sass) / JS (CoffeeScript) ​​

Demo / Code Get Hosting

12 Music Player + Social Share

Author

  • Paul Borm ​

Made with

  • HTML (Pug) / CSS (SCSS) / JS​​

Demo / Code Get Hosting

13 Week 6 – Audio Player

Author

  • Matt Stvartak ​

Made with

  • HTML / CSS (SCSS) / JS

Demo / Code Get Hosting

14 Flat music player

Author

  • Grandvincent Marion ​

Made with

  • HTML / CSS / JS

Demo / Code Get Hosting

15 Music Player UI Design

Author

  • Renan Pupin ​

Made with

  • HTML / CSS (SCSS) / JS

Demo / Code Get Hosting

16 Responsive Audio Player

Author

  • Mark Hillard ​

Made with

  • HTML / CSS / JS

Demo / Code Get Hosting

17 Music Player :: RV Code Challenge

Author

  • Alex Fernandez

Made with

  • HTML / CSS (SCSS) / JS

Demo / Code Get Hosting

The post 16+ jQuery Music Players appeared first on csshint - A designer hub.

]]>