var isLocal = location.host.match( /localhost|hirospheere.neet/ ); var MP3App = function( args ) { args = args || {}; var com_e = args.com_e; if( ! com_e ) return; var e = e_create( { type: 'div' } ); var timeline = makeTimeline( new Date().getTime() - 24 * 3600 * 1000, args.itemCount || 7 ); var n = 0; var iid = setInterval ( function() { Item( timeline[ n ], e, args ); if( ++ n < timeline.length ) return; clearInterval( iid ); }, args.interval || 100 ); com_e.appendChild( e ); function makeTimeline( end, dayCount ) { var rt = []; var d = 24 * 3600 * 1000; for( var n = 0; n < dayCount; n ++ ) { rt.push( end - ( d * n ) ); } return rt; } function Item( time, com_e, args ) { var format = 'http://137.229.36.30/data/scmag/images/{YYYY}/{YYYY}_{MM}/gkn{YYYY}{MM}{DD}_Bx.mp3'; var url = date_uformat( format, time ); var label = date_uformat( '{YMD}', time ); var link = { type: 'a', text: label, attrs: { target: '_blank', href: url } }; link.style = { marginRight: '4px' }; var def = { type: 'div', parts: [ link ] }; var e = e_create( def, com_e ); Player( url, e, args ); } function Player( mp3_url, com_e, args ) { var swf = isLocal ? '1bit.swf' : 'http://blog-imgs-44.fc2.com/i/k/o/ikoihaarp/1bit.swf'; var foreColor = args.forecolor || '#5566ff'; var e = document.createElement( 'embed' ); e.setAttribute( 'type', 'application/x-shockwave-flash' ); e.setAttribute( 'src', swf ); e.setAttribute( 'bgcolor', args.bgcolor || '#FFFFFF' ); e.setAttribute( 'quality', 'high' ); e.setAttribute( 'flashvars', 'foreColor=' + foreColor + '&analytics=false&filename=' + mp3_url ); e.setAttribute( 'width', args.width || 13 ); e.setAttribute( 'height', args.height || 13 ); com_e.appendChild( e ); return; } } /* EUC-JP¤ÇÊݸ */