Go Back   vb.org Archive > vBulletin 4 Discussion > vB4 General Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 03-14-2010, 04:38 AM
Bouncer222 Bouncer222 is offline
 
Join Date: Oct 2009
Posts: 705
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default How did this site create this type of intro?

Go to http://www.187ci.com/
How did they make an Intro pop up? I have a flash intro as well... and I wana make it pop up like that, how to do it?
Reply With Quote
  #2  
Old 03-14-2010, 10:39 AM
13th_Disciple 13th_Disciple is offline
 
Join Date: Jan 2003
Posts: 262
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

<a href="http://jquery.com/demo/thickbox/" target="_blank">http://jquery.com/demo/thickbox/</a>
Reply With Quote
  #3  
Old 03-14-2010, 04:57 PM
Bouncer222 Bouncer222 is offline
 
Join Date: Oct 2009
Posts: 705
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

That doesnt explain how they did it, when you visit site, the into automatically opens up.
And that link I believe is only to explain how to create that type of image viewer (basically the border of the intro, or in other words the box)
Reply With Quote
  #4  
Old 03-14-2010, 09:46 PM
TimberFloorAu's Avatar
TimberFloorAu TimberFloorAu is offline
 
Join Date: May 2008
Location: Brisbane
Posts: 2,264
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You have to understand onload events Bouncer, you should familiarise yourself with Jquery.

Their code does the magic, and its cookie enabled:

Code:
<link rel="stylesheet" href="http://www.187ci.com/css/thickbox.css" type="text/css" media="screen" />

<script src='http://www.187ci.com/js/jquery.js' type='text/javascript'></script>

<script src='http://www.187ci.com/js/thickbox.js' type='text/javascript'></script>
<script src="http://www.187ci.com/joker.js" type="text/javascript"></script>
<script src="http://www.187ci.com/js/flashembed.min.js" type="text/javascript"></script>
<script src="http://www.187ci.com/js/flow.embed.js" type="text/javascript"></script>
<script type="text/javascript" src="http://www.google.com/jsapi?key=ABQIAAAAQrwr5OP5cLJ14dpzZTQyEhRU5xi8JZ7Wh4mAjDSv5MKM6zUyvBQFqwQTJT7-qsETX0h3kvkt-F0Z3Q"></script>

<link rel="stylesheet" type="text/css" href="http://www.187ci.com/css/multiple-instances.css"/>
	
<script type="text/javascript">
	
	// this simple call does the magic
	$(function() 
{

		$("a.flowplayer").flowembed("../FlowPlayerDark.swf",  
{
clip: {  
        // track start event for this clip  
        onStart: function(clip) {  
            pageTracker._trackEvent("Videos", "Play", clip.url); 
        },  
        // track pause event for this clip  
        onPause: function(clip) {  
            pageTracker._trackEvent("Videos", "Pause", clip.url); 
            alert("dasdsad");
        },  
        // track stop event for this clip  
        onStop: function(clip) {  
            pageTracker._trackEvent("Videos", "Stop", clip.url); 
        },  
        // track finish event for this clip  
        onFinish: function(clip) {  
            pageTracker._trackEvent("Videos", "Finish", clip.url); 
        } 
    }  

    

}
);		

}
);  
		
</script>
Reply With Quote
  #5  
Old 03-14-2010, 09:54 PM
Bouncer222 Bouncer222 is offline
 
Join Date: Oct 2009
Posts: 705
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

K so can I just use that code you pasted? And what do I need to change? And where to put it?
Thanks.
Reply With Quote
  #6  
Old 03-14-2010, 10:12 PM
TimberFloorAu's Avatar
TimberFloorAu TimberFloorAu is offline
 
Join Date: May 2008
Location: Brisbane
Posts: 2,264
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

No dont use their CODE !

You can learn from other peoples codes, but dont Plaguerise their code.

Search for jquery in google.
or use http://flowplayer.org/

We use their stuff on quite a few of our sites.
Reply With Quote
  #7  
Old 03-14-2010, 10:48 PM
Bouncer222 Bouncer222 is offline
 
Join Date: Oct 2009
Posts: 705
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

K TimberFloorAu, you need to understand, I'm not a coder, and barely have any knowledge in coding, except some maybe simple html understandings.

I need someone to show me the code that can be used, not where to find it, because I simply will end up not knowing what i need.
Reply With Quote
  #8  
Old 03-15-2010, 12:08 AM
TimberFloorAu's Avatar
TimberFloorAu TimberFloorAu is offline
 
Join Date: May 2008
Location: Brisbane
Posts: 2,264
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

k.

Well start learning fast lol

I understand what you are saying, but you need to get to grips with this stuff ( even basics gets you a long way )
Or pay someone to do the coding for you.

Ste
Reply With Quote
  #9  
Old 03-15-2010, 12:37 AM
Bouncer222 Bouncer222 is offline
 
Join Date: Oct 2009
Posts: 705
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Why can't I just use their code and change it around? Plus where would the code go? and is THAT code made to show the intro only once?
Reply With Quote
  #10  
Old 03-15-2010, 10:25 AM
merk_aus merk_aus is offline
 
Join Date: Feb 2008
Location: Australia
Posts: 582
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

reading their code and those other links provided will teach you what you need to have the intro to show what you like - we all have to start learning sometime, and if you are not willing to learn and not willing to pay people to give you every little bit of code you want you shouldn't be an admin there is alot more work than just point and click.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 02:22 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04278 seconds
  • Memory Usage 2,251KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (1)bbcode_code
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (10)postbit
  • (10)postbit_onlinestatus
  • (10)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete