Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1114557
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T03:01:24+00:00 2026-05-17T03:01:24+00:00

I am using this Math for a bg color animation on hover: var col

  • 0

I am using this Math for a bg color animation on hover:

var col = 'rgb(' + (Math.floor(Math.random() * 256)) + ',' + (Math.floor(Math.random() * 256)) + ',' + (Math.floor(Math.random() * 256)) + ')';

It produces a random rgb color. Very nice indeed but I look for something different.

Does anybody know a good Math that I can use to have that random color only out of a certain color range, like out of the red color range or out of the greens?

Any help is appreciated.

@Avinash, here is my complete code as I use it right now. How can I include your solution?

$(document).ready(function () {
    //bg color animation
    original = $('.item,.main-menu-button').css('background-color');
    $('.item,.main-menu-button').hover(function () { //mouseover
        var col = 'rgb(' + (Math.floor(Math.random() * 256)) + ',' + (Math.floor(Math.random() * 256)) + ',' + (Math.floor(Math.random() * 256)) + ')'; //random hover color
        $(this).stop().animate({
            'backgroundColor': col
        }, 1000);
    }, function () { //mouseout
        $(this).stop().animate({
            'backgroundColor': '#111'
        }, 500); //original color as in css
    });
});

It doesn´t work. I better leave it as it is. Thank to all of you for your help.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T03:01:24+00:00Added an answer on May 17, 2026 at 3:01 am

    To generate a random number in a range, we need to do some thing like

    minValue + random Number * (maxValue - minValue)
    

    i.e., if you want to create a random number between the range of 100 to 200, we should do

    var rand = 100 + Math.floor(Math.random() * (200 - 100));
    

    which gives a random number in between the range 100 to 200

    using this basic rule we can generate a random color from a given range

    var range = [{0 : 150,1 : 200}, {0 : 200,1 : 230},{0 : 10,1 : 20}];
    function rgb() {
      var color  ='rgb(';
      for(var i = 0; i< 3; i++) {
        color += rand(range[i]['0'], range[i]['1']) + ',';
      }
      return color.replace(/\,$/,')')
    }
    
    function rand(min, max) {
        return min + Math.floor(Math.random() * (max - min));
    }
    
    alert(rgb());
    

    Try this code http://jsbin.com/tuday

    EDIT :

    $(function() {
        var cache = $('#hover').css('background-color');
        $('#hover').hover(function() {
            $(this).css({'background-color' : rgb() });
        },function() {
            $(this).css({'background-color' : cache });
        });
    });
    

    Example : http://jsbin.com/iwovew

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.