theme.js ファイルに関数があります
$('.open_copy').click(function(){
var that = $(this);
var copy = that.prev();
that.parents('.asset').find('.cover').click();
copy.css('opacity', 0).show();
if (copy.children('.copy_content').data('jsp')) {
copy.children('.copy_content').data('jsp').destroy();
}
var height = copy.children('.copy_content').css({height: ''}).height();
if (height < that.parents('.asset').height() - 37) {
var top = (that.parents('.asset').height() - height)/2;
top = top < 37 ? 37 : top;
copy.children('.copy_content').css({'margin-top': top});
} else {
copy.children('.copy_content').css({'margin-top': '', height: that.parents('.asset').height() - 37}).jScrollPane();
}
if (!that.parents('.asset').find('.close_copy').length) {
that.prev().append('<a href="#" class="close_copy">Close</a>');
}
copy.animate({ 'opacity' : 1 }, 500);
that.fadeOut(500);
return false;
});
不透明度の値を 0.9 に変更する必要がありますが、theme.js ファイルにアクセスできません。HTMLページに関数を追加して、この関数を変更/変更する方法はありますか?
copy.animate({ 'opacity' : 1 }, 500);