0

私は@Anywhereが機能しており、つぶやきボックスが表示されており、次のコードで多くのカスタマイズを行っています。場所を変更したり、代わりに画像を使用したりするなど、ツイートボタンをカスタマイズする方法があるかどうか興味があります.

twttr.anywhere(function (t) { 
  var me = this; 
  var a = t('#tweetControls').tweetBox({
   height : 75, 
   width : 480, 
   defaultContent : 'Default Text', 
   counter : false, 
   label : ' ', 
   complete : function (tweetBox) {
      me.tweetBox = tweetBox; 
      try {
         me.tweetBox.$editor.css({
            resize : 'none', 
            color : '#9B9B9B', 
            'font-family': 'Arial', 
            'font-size': '14px', 
            background : 'transparent', 
            'border-radius': 0, 
            '-webkit-border-radius': 0, 
            '-moz-border-radius': 0 
         }); 
         me.tweetBox.$button.css( {
            cursor : 'hand', 
            cursor : 'pointer' ,
            display: none
         }); 
    } catch (e) {
    //
    }
}, 
    onTweet : function () {
    me.tweetBox.setContent('Restore default text'); 
}
}); 
});
4

0 に答える 0