Changeset 1834358
- Timestamp:
- 03/06/2018 10:26:11 AM (8 years ago)
- Location:
- brainesia-scoll-effect/trunk
- Files:
-
- 4 edited
-
assets/js/brainesia-scroll-effect.js (modified) (1 diff)
-
assets/js/bse.js (modified) (1 diff)
-
brainesia-scroll-effect.php (modified) (3 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
brainesia-scoll-effect/trunk/assets/js/brainesia-scroll-effect.js
r1055584 r1834358 29 29 label: 'effect', 30 30 'values': [ 31 {text : 'Fade In', value : 'fadeIn'}, 32 {text : 'Fade In Down', value : 'fadeInDown'}, 33 {text : 'Fade In Down Big', value : 'fadeInDownBig'}, 31 34 {text : 'Fade In Left', value : 'fadeInLeft'}, 35 {text : 'Fade In Left Big', value : 'fadeInLeftBig'}, 32 36 {text : 'Fade In Up', value: 'fadeInUp'}, 37 {text : 'Fade In Left', value: 'fadeInLeft'}, 38 {text : 'Fade In Left Big', value : 'fadeInLeftBig'}, 39 {text : 'Fade In Right', value : 'fadeInRight'}, 40 {text : 'Fade In Right Big', value : 'fadeInRightBig'}, 41 {text : 'Fade In Up', value : 'fadeInUp'}, 42 {text : 'Fade In Up Big', value : 'fadeInUpBig'}, 43 {text : 'Fade Out', value : 'fadeOut'}, 44 {text : 'Fade Out Down', value : 'fadeOutDown'}, 45 {text : 'Fade Out Down Big', value : 'fadeOutDownBig'}, 46 {text : 'Fade Out Left', value : 'fadeOutLeft'}, 47 {text : 'Fade Out Left Big', value : 'fadeOutLeftBig'}, 48 {text : 'Fade Out Right', value : 'fadeOutRight'}, 49 {text : 'Fade Out Right Big', value : 'fadeOutRightBig'}, 50 {text : 'Fade Out Up', value : 'fadeOutUp'}, 51 {text : 'Fade Out Up Big', value : 'fadeOutUpBig'}, 52 {text : 'Flip', value : 'flip'}, 53 {text : 'Flip In X', value : 'flipInX'}, 54 {text : 'Flip In Y', value : 'flipInY'}, 55 {text : 'Flip Out X', value : 'flipOutX'}, 56 {text : 'Flip Out Y', value : 'flipOutY'}, 57 {text : 'Light Speed In', value : 'lightSpeedIn'}, 58 {text : 'Light Speed Out', value : 'lightSpeedOut'}, 59 {text : 'Rotate In', value : 'rotateIn'}, 33 60 {text : 'Rotate In Down Left', value : 'rotateInDownLeft'}, 34 61 {text : 'Rotate In Down Right', value : 'rotateInDownRight'}, 62 {text : 'Rotate In Up Left', value: 'rotateInUpLeft'}, 63 {text : 'Rotate In Up Right', value : 'rotateInUpRight'}, 64 {text : 'Rotate Out', value : 'rotateOut'}, 65 {text : 'Rotate Out Down Left', value : 'rotateOutDownLeft'}, 66 {text : 'Rotate Out Down Right', value : 'rotateoutDownRight'}, 67 {text : 'Rotate Out Up Left', value: 'rotateOutUpLeft'}, 68 {text : 'Rotate Out Up Right', value : 'rotateOutUpRight'}, 69 {text : 'Bounce', value : 'bounce'}, 70 {text : 'Bounce In', value : 'bounceIn'}, 71 {text : 'Bounce In Down', value : 'bounceInDown'}, 35 72 {text : 'Bounce In Left', value : 'bounceInLeft'}, 36 {text : 'Bounce In Right', value : 'bounceInRight'} 73 {text : 'Bounce In Right', value : 'bounceInRight'}, 74 {text : 'Bounce In Up', value : ' bounceInUp'}, 75 {text : 'Bounce Out', value : 'bounceOut'}, 76 {text : 'Bounce Out Down', value : 'bounceOutDown'}, 77 {text : 'Bounce Out Left', value : 'bounceOutLeft'}, 78 {text : 'Bounce Out Right', value : 'bounceOutRight'}, 79 {text : 'Bounce Out Up', value : 'bounceOutUp'}, 80 {text : 'Flash', value : 'flash'}, 81 {text : 'Pulse', value : 'pulse'}, 82 {text : 'RubberBand', Value : 'rubberBand'}, 83 {text : 'Shake', value : 'shake'}, 84 {text : 'Swing', value : 'swing'}, 85 {text : 'Tada', value : 'tada'}, 86 {text : 'Wobble', value : 'wobble'}, 87 {text : 'Hinge', value : 'hinge'}, 88 {text : 'Roll In', value : 'rollIn'}, 89 {text : 'Roll Out', value : 'rollOut'} 37 90 ] 38 91 } -
brainesia-scoll-effect/trunk/assets/js/bse.js
r1055584 r1834358 70 70 jQuery('.bse').addClass("hidden").viewportChecker({ 71 71 classToAdd: 'visible animated', 72 offset: 7072 offset: 0 73 73 }); 74 74 }); -
brainesia-scoll-effect/trunk/brainesia-scroll-effect.php
r1055584 r1834358 4 4 Plugin URI: http://brainesia.com/plugin/brainesia-scroll-effect 5 5 Description: Insert effect into your content 6 Version: 1.0.26 Version: 2.0.0 7 7 Author: brainesia 8 8 Author URI: http://brainesia.com … … 223 223 break; 224 224 case 'wobble': 225 $effect1 = " wobble";225 $effect1 = "fadeInLeft"; 226 226 break; 227 227 case 'hinge': … … 237 237 $effect1 = 'fadeInDown'; 238 238 } 239 $html = '< div class="bse '.$class.' '.$effect1.'">'.$content.'</div>';239 $html = '<p class="bse '.$class.' '.$effect.'">'.$content.'</p>'; 240 240 return $html; 241 241 } -
brainesia-scoll-effect/trunk/readme.txt
r1055584 r1834358 1 1 === Brainesia Scroll Effect === 2 Contributors: brainesia3 Donate link: http:// brainesia.com/donate/2 Contributors: ncreative 3 Donate link: http://ncreative.net/donate/ 4 4 Tags: scroll, animation, scroll effect, 5 5 Requires at least: 3.9 6 Tested up to: 4. 17 Stable tag: 1.0.26 Tested up to: 4.9 7 Stable tag: 2.0.0 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 13 13 == Description == 14 14 Brainesia Scroll Effect will make animation on your content when visitors scroll the website page. 15 You will see the Brainesia Scroll Effect icon in your editor. Just click the icon and you will see the box to choose an effect. Recently we provide 6 animation. 16 You can use the scroll effect on your text, images, videos or another content. 15 You will see the Brainesia Scroll Effect icon in your editor. Just click the icon and you will see the box to choose an effect. Recently we provide 3 animation: fade in up, fade in left, rotate in left. We will put some new animation later. 17 16 18 17 Credits: … … 29 28 == Changelog == 30 29 31 = 1.0.2=32 * add 3 new effects30 = 2.0 = 31 Add 55 new animations 33 32 34 = 1.0.1 = 35 * minor fixing 36 37 = 1.0.0 = 33 = 1.0 = 38 34 * Initial release
Note: See TracChangeset
for help on using the changeset viewer.