My favorites | Sign in
Project Home Downloads Issues
READ-ONLY: This project has been archived. For more information see this post.
Search
for
  Advanced search   Search tips   Subscriptions
Issue 172: Wish - Modalbox unlikly Window behavior!
2 people starred this issue and may be notified of changes. Back to list
Status:  New
Owner:  ----


 
Reported by nevv...@gmail.com, Feb 18, 2009
hello. 
i would love to configure nyroModal so that it is behaving like the CSS
Overlay @ www.method.com 
that would be really cool! 
because if the Modal Window isn't flying above the Content / the Rest of
the Page it would be more integrated into the Page Layout!

thx. 

J


Bild 8.png
357 KB   View   Download
Feb 20, 2009
Project Member #1 william....@gmail.com
very cool idea, with some manipulation using http://nyromodal.nyrodev.com/ 'blocker
Modal' demo example you could come close to this. just load the nyroModal into divs
that you create that are part of the dom and page layout
Feb 20, 2009
Project Member #2 william....@gmail.com
i take that back. you cannot easily do that because the modal window can only exist
in one location at once, see my attached file as an example. i still say that this
would be a cool addition.
METHODish_attempt.zip
71.1 KB   Download
Feb 20, 2009
Project Member #3 william....@gmail.com
it is calling a function i added to try to remove the modal quicker. added to
jquery.nyroModal-1.4.2

	// Remove the modal function completely
	$.nyroModalEndRemove = function() {
		if(modal.full){
			modal.ready = false;
			modal.anim = true;
			modal.closing = true;
			endRemove();
		}
	};
METHOD_attemp2.zip
71.2 KB   Download
Feb 20, 2009
Project Member #4 william....@gmail.com
$('#block11,#block33').click(function(e) {
			$.nyroModalEndRemove()
			$.nyroModalManual({	
		      blocker:'#blocker3',
		      content: 'hello, the page just loaded i am located left'
		    });	
		    return false;
		  });

for code above
replace '$.nyroModalEndRemove'
with 

jQuery.fx.off = true;
$.nyroModalRemove();
jQuery.fx.off = false;

and get same effect without needing that extra nyroModalEndRemove function i custom
created

Powered by Google Project Hosting