Jump to content

Recommended Posts

Hi,

 

How to I edit this script so that everytime a user go to my site they get a ramdom fixed background. Here is the script..

 

<style type="text/css">

  body {

    background-attachment:fixed;

    background-image:url(background_image.jpg);

  }

</style>

 

regards,

usawh

 

Assuming this involves PHP?

 

$bg_arr = array("background1.jpg","something.gif","another.png");
shuffle($bg_arr);
?>
<style type="text/css">
  body {
    background-attachment:fixed;
    background-image:url('<?php=$bg_arr[0] ?>);
  }
</style>

 

Just a quick, way... shuffle($arr) shuffles the array so when you call it again, it's shuffled.

<?php
$bg_arr = array("background1.jpg","something.gif","another.png");
shuffle($bg_arr);
?>
<style type="text/css">
  body {
    background-attachment:fixed;
    background-image:url('<?={$bg_arr[0]} ?>');
  }
</style>

 

I forgot a couple of things, try now.

Or use proper syntax (and I prefer array_rand()):

 

<?php
$bg_arr = array('background1.jpg', 'something.gif', 'another.png');
echo '<style type="text/css">
  body {
    background-attachment:fixed;
    background-image:url("' . $bg_arr[array_rand($bg_arr)] . '");
  }
</style>';
?>

 

If people would just stop using short tags and echo shortcuts, this post wouldn't be necessary.

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.