LoginSignup
10
11

More than 5 years have passed since last update.

SlideShareの全スライドを一気にババッと見る

Last updated at Posted at 2015-09-05

SlideShareのjQueryを使わせてもらったりと雑に書きました。便利。

動作

Gyazo

スクリプト

var $container = $('#slideview-container');

var div = document.createElement('div');
div.id = 'all-slide-panel';
$container.prepend(div);
$div = $(div);

$('.slide_container').find('section>img.slide_image').each(function(){
  var src = $(this).data('normal');
  $div.append('<img src="' + src + '" width="250" height="200" />');
});

方法

  1. SlideShareから対象のスライドを表示します
  2. developer tools > console を開きます
  3. 上記スクリプトをコピペし実行します
    • chromeのみ動作確認済み

参考

10
11
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
10
11