typoscriptを使用して 'Text and Images'要素内のイメージをサイズ変更してトリミングする方法はありますか?おそらく、設定された幅と高さを含めるには、この同じ手法を変更する方法はありTYPO3イメージのサイズ変更とトリミング
# Get default settings for images
temp.image < tt_content.image.20
# Define new layout
tt_content.image.20 = CASE
tt_content.image.20 {
key.field = layout
default < temp.image
1 < temp.image
100 < temp.image
100 {
imageStdWrap.dataWrap = <div class="gallery"><ul>|</ul></div>
renderMethod = ul
rendering {
ul {
oneImageStdWrap.dataWrap = <li>|</li>
}
}
layout.default.value = ###IMAGES###
}
}
# Set defaults also for TEXTPIC
tt_content.textpic.20 = < tt_content.image.20.default
:
私は、画像のレイアウトを設定することにより、唯一の要素画像にカスタムラップを与えるために、過去にこれを使用しています?
私はこれを使用することができます:https://docs.typo3.org/typo3cms/TyposcriptReference/Functions/Imgresource/Index.htmlしかし、私はそれを動作させるために置くべきか分からないのですか? – user500665
私はtyposcriptをそのまま使ってみましたが効果はありませんか? – user500665
は、TSOB(TypoScriptObjectBrowser)で一見を持っています。 tt_content.image.20.1.file.widthに別のwidth属性があり、オーバーライドも必要な場合があります。 –