Uploadify button: Style with CSS?

后端 未结 8 2204
挽巷
挽巷 2020-12-04 12:44

Is it possible to replace the Uploadify button (which is a graphic containing up/over/down states) with a simple CSS-styled button?

8条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-04 13:06

    I was able to get away with something massively more simple.

    xhtml:

    Upload Pictures

    css:

    #uploadify object { 
      position:absolute;
      left:0; right:0;  
      width:100%        
    }                   
    

    javascript:

    $("#uploadify>div").uploadify({                     
      'hideButton'   : true                                
      , 'wmode'      : 'transparent'                         
      , 'uploader'   : '/static/uploadify/uploadify.swf'
      , 'script'     : '/static/uploadify.php'          
      , 'folder'     : '/_uploads'                      
      , 'multi'      : true                             
    })                                                  
    
    // If you're using jQuery UI.
    $("#uploadify").button(); 
    

    Probably a little easier, now that we have hideButton: true, not sure if @Herb knew about it.

    UPDATE I wrote this answer in July of 2010. It's now March of 2013. HTML5 supports multiple file-uploads. Don't use uploadify at all; I don't.

提交回复
热议问题