How to call a function with parameter in a bash script?

Help with HTML Code...?

  • I have been looking for a HTML code that has a menu on the left and a paragraph on the right where it's expands and collapses. I found this code, it is as close to what I want but the paragraphs' that expand and collase are next to the title. I would like all of the paragraphs to be next to the first title. I would be extremly appreciated if you could help. Thank you in advance. Here is the code: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-… <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title></title> <style type="text/css"> /*<![CDATA[*/ .Content { position:absolute;overflow:hidden;left:5… } .Slide { position:absolute;left:0px,top:0px;width… } /*]]>*/ </style> <script type="text/javascript"> /*<![CDATA[*/ // Basic Element Animator (21-February-2009) // by Vic Phillips http://www.vicsjavascripts.org.uk // To progressively change the Left, Top, Width, Height or Opacity of an element over a specified period of time. // With the ability to scale the effect time on secified minimum/maximum values // and with three types of progression 'sin' and 'cos' and liner. // **** Application Notes // **** The HTML Code // // when moving an element the inline or class rule style position of the element should be assigned as // 'position:relative;' or 'position:absolute;'. // // The element would normally be assigned a unique ID name. // // **** Executing the Effect(Script) // // The effect is executed by an event call to function 'zxcBAnimator('width#',document.getEleme… // where: // parameter 0 = the mode(see Note 2). (string) // parameter 1 = the unique ID name or element object. (string or element object) // parameter 2 = the start position of the effect. (digits, for opacity minimum 0, maximum 100) // parameter 3 = the finish position of the effect. (digits, for opacity minimum 0, maximum 100) // parameter 4 = (optional) period of time between the start and finish of the effect in milliseconds. (digits or defaults to 2000 milliSeconds) // parameter 5 = (optional) to scale the effect time on a secified minimum/maximum. (array, see Note 5) // field 0 the minimum. (digits) // field 1 the maximum. (digits) // parameter 6 = (optional) the type of progression, 'sin', 'cos' or 'liner'. (string, default = 'liner') // 'sin' progression starts fast and ends slow. // 'cos' progression starts slow and ends fast. // // Note 1: The default units(excepting opacity) are 'px'. // Note 2: Examples modes: 'left', 'top', 'width', 'height', 'opacity. // For hyphenated modes, the first character after the hyphen must be upper case, all others lower case. // Note 3: To 'toggle' the effect include '#' in parameter 0. // The first call will set the toggle parameters. // Subsequent calls with '#' in parameter 0 and the same start and finish parameters will 'toggle' the effect. // Note 4: The function may be re-executed with a different set of parameters (start/finish time or period) // whenever required, say from an onclick/mouseover/out event. // The period parameter will be retained unless re-specified. // Note 5: parameter 5 is of particular use when re-calling the effect // in mid travel to retain an constant rate of progression. // // **** Advanced Applications // // It may be required to access the current value of the effect. // The element effect is accessible from the element property // element effect = elementobject[mode.replace(/\W/g,'')+'oo… // where mode is parameter 0 of the initial call. // An array storing the current, start and finish values of the element effect may be accessed // from the element effect.data as fields 0, 1 and 2 respectively // // **** General // // All variable, function etc. names are prefixed with 'zxc' to minimise conflicts with other JavaScripts. // These characters may be changed to characters of choice using global find and replace. // // The Functional Code(about 2.06K) is best as an External JavaScript. /

  • Answer:

    That's too much code and information, I would like to help but you need to focus on smaller sections of code at a time.

Foolish Soul at Yahoo! Answers Visit the source

Was this solution helpful to you?

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.