collapse

* Simple Portal Archived Forum

This is an Archive Forum.

The content in this forum may be out-of-date or have been superseded by newer information, and links in forum pages to other sites may not work.
This forum contains archives for future reference.

Visit our thread at Simple Machines Forum for current support.

SMF 2.1 users: EhPortal is a ported version of Simple Portal specifically designed for the SMF 2.1 branch.
Please visit web-develop.ca to download EhPortal and for its support.

* User Info

 
 
Welcome, Guest. Please login or register.

* Who's Online

  • Dot Guests: 405
  • Dot Hidden: 0
  • Dot Users: 0

There aren't any users online.

* Shoutbox

Refresh History
  • Shoutbox is not for support!
  • {OCS}MasterSeal: Yup, Still adore SP
    April 21, 2019, 07:08:06 PM
  • {OCS}MasterSeal: STILL love SP :)
    November 24, 2018, 05:05:50 AM
  • ♦ Ninja ZX-10RR ♦: <3 aegersz
    September 13, 2018, 03:36:09 PM
  • aegersz: I STILL <3 LOVE SimplePortal
    September 13, 2018, 07:11:39 AM
  • aegersz: o LOVE you guys - Simple Portal rocks !
    May 09, 2018, 05:18:59 AM
  • Chen Zhen: our apologies for the site being down.. please read server issues topic
    March 22, 2018, 05:32:38 AM
  • {OCS}MasterSeal: LOL PLEASE forget I just posted that. I found the answer in my own dang post back in 2015. lol sorry!
    July 04, 2017, 10:47:55 PM
  • {OCS}MasterSeal: I know this SB isnt' for support, but I just have a general question. Who would I contact to find out where SP stores its block info? Is it DB driven or files? I searched the site but came up with nothing. probably my fault any insight is appreciated.
    July 04, 2017, 10:43:36 PM
  • ♦ Ninja ZX-10RR ♦: Excuse me but what does Simpleportal have to deal with that?
    February 05, 2017, 08:21:14 PM
  • WhiteEagle: of course IMHO that site appears to be dead :(
    February 04, 2017, 01:08:05 PM
  • WhiteEagle: If I can get that, then I'll use it for that site...
    February 04, 2017, 01:07:35 PM
  • WhiteEagle: decided to not use SMF for any projects, unless I can get a copy of the premium version of the fanfiction archive plugin
    February 04, 2017, 01:06:54 PM
  • expertdecisions: cloudflare
    January 28, 2017, 08:01:47 AM
  • aegersz: SM release 2.0.13 !
    January 12, 2017, 06:00:13 AM
  • raffo: Tks Emanuele, even if I didn't understand the fix :D
    November 07, 2016, 02:01:20 AM
  • emanuele: [link]
    November 01, 2016, 12:43:50 PM
  • emanuele: raffo: the English support board is a good place. ;)
    November 01, 2016, 12:43:38 PM
  • raffo: Where can I find the fix for the shoutbox?
    November 01, 2016, 05:06:09 AM
  • {OCS}MasterSeal: To the SP team, I make a point to come here and thank you as much as possible for your work.  so again, THANK YOU!
    October 28, 2016, 10:38:05 AM
  • emanuele: That's indeed funny, the limit is present only in the patch and not the full install.
    October 22, 2016, 06:14:58 PM

* Recent Posts

Adding Forums Button to Nav bar by jirapon
[August 01, 2019, 09:07:12 AM]


Re: Board Icons by ♦ Ninja ZX-10RR ♦
[July 30, 2019, 04:03:41 PM]


MOVED: Czech translation???? by ♦ Ninja ZX-10RR ♦
[July 30, 2019, 03:04:51 PM]


Board Icons by jirapon
[July 30, 2019, 07:28:44 AM]


Re: Thankyou Simpleportal, by ♦ Ninja ZX-10RR ♦
[July 29, 2019, 09:41:29 AM]

If you're interested in helping other members with support requests, consider joining the Community Support Helpers group.

Author Topic: Adding sprite buttons to a custom menu?  (Read 4776 times)

0 Members and 1 Guest are viewing this topic.

Offline Swifty550

  • Semi Newbie
  • *
  • Posts: 7
  • SMF Version: 2 RC4
  • SP Version: 2.3.3
Adding sprite buttons to a custom menu?
« on: March 16, 2012, 09:22:02 AM »
I used an HTML block to create a custom menu, eg;

Code: [Select]
<div class="smalltext"><font  size="1"><b>Navigation</b></font><br>
<hr>
<img src="/menuimages/menu.gif"/> <font size="2"><a href="/">Home</a></font><br>
<img src="/menuimages/menu.gif"/> <font size="2"><a href="index.php?page=hmm">Hmm</a></font><br>


<br>
<font  size="1"><b>About</b></font><br>
<hr>


</div>

I want to replace the link with active/hover features of a button. How would I go about this if possible?

Thanks.

Offline Chen Zhen

  • The Underdog
  • Operations Manager
  • *
  • Posts: 1350
  • Gender: Male
  • Kinesis
    • WebDev
  • SMF Version: 2.1
  • EhPortal Version: 1.22
Re: Adding sprite buttons to a custom menu?
« Reply #1 on: March 16, 2012, 11:18:34 AM »
You will need to use event handlers to call javascript functions that produce the desired effect.
ref. http://www.w3schools.com/jsref/dom_obj_event.asp

Also font tags are deprecated and you will need to possibly use span tags with style attributes.


 

Offline Swifty550

  • Semi Newbie
  • *
  • Posts: 7
  • SMF Version: 2 RC4
  • SP Version: 2.3.3
Re: Adding sprite buttons to a custom menu?
« Reply #2 on: March 16, 2012, 12:05:13 PM »
You will need to use event handlers to call javascript functions that produce the desired effect.
ref. http://www.w3schools.com/jsref/dom_obj_event.asp

Also font tags are deprecated and you will need to possibly use span tags with style attributes.

Hey thanks, could you give me an idea on how to start? I have completely no idea. :(

Offline Chen Zhen

  • The Underdog
  • Operations Manager
  • *
  • Posts: 1350
  • Gender: Male
  • Kinesis
    • WebDev
  • SMF Version: 2.1
  • EhPortal Version: 1.22
Re: Adding sprite buttons to a custom menu?
« Reply #3 on: March 16, 2012, 09:23:13 PM »
Imo use a custom php block instead. You can still echo all the html & javascript you need and it gives you more control over what you can do with the block.


In this example I did not bother with an actual javascript function but if you wanted it to do more then you can opt it.
This will give you a home button that changes on mouseover & mouseout.

Custom PHP Block:
Code: [Select]
global $boardurl, $scripturl;
echo '
<span>
<a href="'.$boardurl.'" onMouseover="document.changeMyImage1.src = \'http://www.dancarmel.com/cs/images/stellent/home3.gif\';" onMouseout="document.changeMyImage1.src = \'http://www.onlinetradesmen.ie/Portals/0/images/icons/120.png\';">
<img id="changeMyImage1" src="http://www.onlinetradesmen.ie/Portals/0/images/icons/120.png" style="height:50px;width:50px;" alt="" />
</a>
<a href="'.$scripturl.'?page=hmm" onMouseover="document.changeMyImage2.src = \'http://icongal.com/gallery/image/289490/hmm_thinking_skeptical.png\';" onMouseout="document.changeMyImage2.src = \'http://icongal.com/gallery/image/289469/happy.png\';">
<img id="changeMyImage2" src="http://icongal.com/gallery/image/289469/happy.png" style="height:50px;width:50px;" alt="" />
</a>
</span>';

... imo use images from your own site as the above is just an example.

ie.
Code: [Select]
global $boardurl, $scripturl, $settings;
$spacing = '5px';

echo '
<div style="overflow:hidden">
<span>
<a href="'.$boardurl.'" onMouseover="document.changeMyImage1.src = '.$settings['default_theme_url'].'\'/images/my_home_button2.png\';" onMouseout="document.changeMyImage1.src = '.$settings['default_theme_url'].'\'/images/my_home_button1.png\';">
<img id="changeMyImage1" src="'.$settings['default_theme_url'].'/images/my_home_button1.png" style="height:50px;width:50px;" alt="" />
</a>
</span>
<span style="padding-left:'.$spacing.';">
<a href="'.$scripturl.'?page=hmm" onMouseover="document.changeMyImage2.src = '.$settings['default_theme_url'].'\'/images/hmm_button2.png\';" onMouseout="document.changeMyImage2.src = '.$settings['default_theme_url'].'\'/images/hmm_button1.png\';">
<img id="changeMyImage2" src="'.$settings['default_theme_url'].'/images/hmm_button1.png" style="height:50px;width:50px;" alt="" />
</a>
</span>
</div>';

The code shown directly above has all images located in Themes/default/images & will allow you to control the spacing between the links/buttons.
my_home_button1.png
my_home_button2.png
hmm_button1.png
hmm_button2.png

.. add more links & images by duplicating the second set of open/close span tag (then edit it/them) and add it after the second closing span (prior to the closing div). Remember to change changeMyImage2 to 3, 4, 5, etc. etc. so it knows which image id to alter in each case.
« Last Edit: March 16, 2012, 10:15:37 PM by Underdog »

Offline Chen Zhen

  • The Underdog
  • Operations Manager
  • *
  • Posts: 1350
  • Gender: Male
  • Kinesis
    • WebDev
  • SMF Version: 2.1
  • EhPortal Version: 1.22
Re: Adding sprite buttons to a custom menu?
« Reply #4 on: March 16, 2012, 11:34:31 PM »
I'll make it even easier for you.
With the code shown below you only need to adjust the spacing, image dimensions & 2 arrays containing the images + pages.

Horizontal buttons:

Code: [Select]
global $boardurl, $scripturl, $settings;

/* Set space between buttons */
$spacing = '5px';

/* Images height & width */
$width = '50px';
$height = '50px';

/* Home button: image1, image2 */
$home = array('my_home_button1.png', 'my_home_button2.png');

/* All other buttons: image1, image2, page link */
$buttons = array('Page1' => array('Page1_image1.png', 'Page1_image2.png', 'page=myPage1'), 'Page2' => array('Page2_image1.png', 'Page2_image2.png', 'page=myPage2'));

/* Display the buttons/links */
echo '
<div style="overflow:hidden">
<span>
<a href="'.$boardurl.'" onMouseover="document.changeMyHome.src = \''.$settings['default_theme_url'].'/images/'.$home[1].'\';" onMouseout="document.changeMyHome.src = \''.$settings['default_theme_url'].'/images/'.$home[0].'\';" style="text-decoration: none;">
<img id="changeMyHome" src="'.$settings['default_theme_url'].'/images/'.$home[0].'" style="height:'.$height.';width:'.$width.';" alt="Home" />
</a>
</span>';

foreach ($buttons as $button => $image)
{
echo '
<span style="padding-left:'.$spacing.';">
<a href="'.$scripturl.'?'.$image[2].'" onMouseover="document.changeMy'.$button.'.src = \''.$settings['default_theme_url'].'/images/'.$image[1].'\';" onMouseout="document.changeMy'.$button.'.src = \''.$settings['default_theme_url'].'/images/'.$image[0].'\';" style="text-decoration: none;">
<img id="changeMy'.$button.'" src="'.$settings['default_theme_url'].'/images/'.$image[0].'" style="height:'.$height.';width:'.$width.';" alt="'.$button.'" />
</a>
</span>';
}

echo '
</div>';
« Last Edit: March 17, 2012, 03:13:36 PM by Underdog »

Offline Swifty550

  • Semi Newbie
  • *
  • Posts: 7
  • SMF Version: 2 RC4
  • SP Version: 2.3.3
Re: Adding sprite buttons to a custom menu?
« Reply #5 on: March 17, 2012, 02:25:08 PM »
Hi thanks - how would I make my links vertical and not horizontal?

Thanks.

Offline Chen Zhen

  • The Underdog
  • Operations Manager
  • *
  • Posts: 1350
  • Gender: Male
  • Kinesis
    • WebDev
  • SMF Version: 2.1
  • EhPortal Version: 1.22
Re: Adding sprite buttons to a custom menu?
« Reply #6 on: March 17, 2012, 02:53:17 PM »
Vertical buttons:

Code: [Select]
global $boardurl, $scripturl, $settings;

/* Set space between buttons */
$style = 'padding-left:0px;';

/* Images height & width */
$width = '50px';
$height = '50px';

/* Home button: image1, image2 */
$home = array('my_home_button1.png', 'my_home_button2.png');

/* All other buttons: image1, image2, page link */
$buttons = array('Page1' => array('Page1_image1.png', 'Page1_image2.png', 'page=myPage1'), 'Page2' => array('Page2_image1.png', 'Page2_image2.png', 'page=myPage2'));

/* Display the buttons/links */
echo '
<div style="overflow:hidden">
<div style="'.$style.'">
<a href="'.$boardurl.'" onMouseover="document.changeMyHome.src = \''.$settings['default_theme_url'].'/images/'.$home[1].'\';" onMouseout="document.changeMyHome.src = \''.$settings['default_theme_url'].'/images/'.$home[0].'\';" style="text-decoration: none;">
<img id="changeMyHome" src="'.$settings['default_theme_url'].'/images/'.$home[0].'" style="height:'.$height.';width:'.$width.';" alt="Home" />
</a>
</div>';

foreach ($buttons as $button => $image)
{
echo '
<div style="'.$style.'">
<a href="'.$scripturl.'?'.$image[2].'" onMouseover="document.changeMy'.$button.'.src = \''.$settings['default_theme_url'].'/images/'.$image[1].'\';" onMouseout="document.changeMy'.$button.'.src = \''.$settings['default_theme_url'].'/images/'.$image[0].'\';" style="text-decoration: none;">
<img id="changeMy'.$button.'" src="'.$settings['default_theme_url'].'/images/'.$image[0].'" style="height:'.$height.';width:'.$width.';" alt="'.$button.'" />
</a>
</div>';
}

echo '
</div>';

Imo opt no body for your block.
You can change/add to the style variable for ie. positioning.
ie. for centering:
Code: [Select]
$style = 'text-align:center;';
« Last Edit: March 17, 2012, 03:12:55 PM by Underdog »

Offline Swifty550

  • Semi Newbie
  • *
  • Posts: 7
  • SMF Version: 2 RC4
  • SP Version: 2.3.3
Re: Adding sprite buttons to a custom menu?
« Reply #7 on: March 17, 2012, 04:16:16 PM »
Thank you very much!

Offline AngelinaBelle

  • Comrade
  • *
  • Posts: 4870
  • Gender: Female
  • SMF Version: 2 RC3
  • SP Version: 2.3.2
Re: Adding sprite buttons to a custom menu?
« Reply #8 on: March 23, 2012, 01:50:32 PM »
Does that solve it?
Is it ok to hit the "Topic Solved" button?
Please to keep this website running, if you like SimplePortal, make a
one-time subscription. Thank you for your support.

Have you tried the SimplePortal documentation?