WARNING: Archival Site
This is an old website that exists for archive purposes only. Visit https://gutensite.com for our real live site, website builder and digital marketing services.
This is an old website that exists for archive purposes only. Visit https://gutensite.com for our real live site, website builder and digital marketing services.
Q
|
Can I access any Javascript Libraries for advanced Effects? |
A
|
We have a simple GFX (Gutensite FX) Library that allows you to create simple effects like hiding and revealing content. Or for advanced user you can write your own Javascript on any page, and if you want you can utilize the current version of the Mootools Library that is loaded on your site. Mootools LibraryAdvanced users can go to the Advanced tab when editing any page and write their own Javascript and CSS to style and create interactivity on a page. The Mootools library is available when writing any of your javascript and this opens up a great world of possibilities. If you need advanced javascript though, talk to us because we may be able to create a more 'stable' codebase for your site. Gutensite FX LibraryWe have a simple Library, based on Mootools, that allows you to add FX to your page by simply specifying a CSS Class for that element. This is somewhat advanced, and will require you to work with the HTML, but for the intrepid it will be worth the effort. First you have to enable the GFX Library on your site. Go to your Admin > Site Info page and find the Add-Ons section then enable the GFX Library. USAGE:To use the FX, simply place the valid classes on the appropriate HTML elements. EXAMPLES:Simple Related TogglesIf you just need one set of toggles on a page (where all the toggles interact with one another) here is the simple method to accomplish that.
These classes would produce this result: SIMPLE TOGGLE 1 My Hidden Content Goes Here
SIMPLE TOGGLE 2 My Other Hidden Content Goes Here
SIMPLE TOGGLE 3 My Hidden Content Goes Here
SIMPLE TOGGLE 4 My Other Hidden Content Goes Here
Advanced Multiple Unique TogglesIf you need to different sets of toggles on a page (that don't interact with each other) you can give each set a unique ID so that they only interact with themselves. You'll note that one has the added second unique class of gfxid_mystuff, and the other has the second unique class of gfxid_yourstuff.
<p class="gfx_accordion_toggle gfxid_mystuff gfxdisplay_2">MULTIPLE UNIQUE TOGGLE 1.1</p> These classes would produce this result with two different sets of togglers that don't interact with one another: MULTIPLE UNIQUE TOGGLE 1.1 My Hidden Content Goes Here
MULTIPLE UNIQUE TOGGLE 1.2 My Other Hidden Content Goes Here
MULTIPLE UNIQUE TOGGLE 1.3 My Last Hidden Content Goes Here
MULTIPLE UNIQUE TOGGLE 2.1 My Hidden Content Goes Here
MULTIPLE UNIQUE TOGGLE 2.2 My Other Hidden Content Goes Here
FUNCTIONS:Currently there are only a few simple functions. But we plan to add more as we have time and the need arises.
AccordionToggle:Options: gfx_accordion_toggle, gfxid_*, gfxoptions_{*}
Target:Options: gfx_accordion_target, gfxid_*
RevealToggle:Options: gfx_reveal_toggle, gfxid_*, gfxoptions_{*}
Target:Options: gfx_reveal_target, gfxid_*
|