Viewing file: vc-images-carousel.php (1.94 KB) -rw-rw-rw- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php require_once vc_path_dir('SHORTCODES_DIR', 'vc-gallery.php'); class WPBakeryShortCode_VC_images_carousel extends WPBakeryShortCode_VC_gallery { protected static $carousel_index = 1;
public function __construct( $settings ) { parent::__construct( $settings ); // $this->addAction( 'wp_enqueue_scripts', 'jsCssScripts' ); $this->jsCssScripts(); }
public function jsCssScripts() { // wp_register_script('vc_bxslider', vc_asset_url('lib/bxslider-4/jquery.bxslider.min.js')); // wp_register_style('vc_bxslider_css', vc_asset_url('lib/bxslider-4/jquery.bxslider.css')); // wp_register_script('vc_swiper', vc_asset_url('lib/swiper/dist/idangerous.swiper-2.2.js'), array(), time()); // wp_register_style('vc_swiper_css', vc_asset_url('lib/swiper/dist/idangerous.swiper.css')); wp_register_script( 'vc_transition_bootstrap_js', vc_asset_url( 'lib/vc_carousel/js/transition.js' ), array(), WPB_VC_VERSION , true); wp_register_script( 'vc_carousel_js', vc_asset_url( 'lib/vc_carousel/js/vc_carousel.js' ), array( 'vc_transition_bootstrap_js' ), WPB_VC_VERSION , true); wp_register_style( 'vc_carousel_css', vc_asset_url( 'lib/vc_carousel/css/vc_carousel.css' ), array(), WPB_VC_VERSION ); // try bootstap http://jsfiddle.net/HHsxc/2/ }
public static function getCarouselIndex() { return self::$carousel_index ++ . '-' . time(); }
protected function getSliderWidth( $size ) { global $_wp_additional_image_sizes; $width = '100%'; if ( in_array( $size, get_intermediate_image_sizes() ) ) { if ( in_array( $size, array( 'thumbnail', 'medium', 'large' ) ) ) { $width = get_option( $size . '_size_w' ) . 'px'; } else { if ( isset( $_wp_additional_image_sizes ) && isset( $_wp_additional_image_sizes[$size] ) ) $width = $_wp_additional_image_sizes[$size]['width'] . 'px'; } } else { preg_match_all( '/\d+/', $size, $matches ); if ( count( $matches[0] ) > 1 ) { $width = $matches[0][0] . 'px'; } } return $width; } }
|