ランダムな文字列を等分に分割しようと必死になっているので、それぞれを個別にテーマ化できます。私の目標は、テキストにねじれた効果を加えることですが、テキストを正当化し、単語を分割することなく維持することです..
この例でわかるように、私はそのようなことをしようとしましたが、結果は本当にくだらないものです:
http://vps10937.ovh.net/hyphenator/WorkingExample1.html (プラトン 2)
これが私のコードです:
jQuery(document).ready(function() {
jQuery('p.platon2').each(function(index) {
lengthTotal = jQuery(this).text().length
var string = jQuery(this).text();
string = jQuery.trim(string);
var length = 56;
var trimmedString = string.substring(0, length);
jQuery(this).text('');
lengthTotalPrev = 0;
j=0;
z=0
for (i=length; i<lengthTotal; i=i+length){
j++;
z=z+5;
rowString = string.substring(lengthTotalPrev, i);
jQuery(this).append('<span id="row'+j+'" class="rows" style="position:relative;left:-'+z+'px;">'+rowString+'</span>');
lengthTotalPrev = i;
}
});
});
今、プラグインhyphenator.jsを使用してテキストを正しく分割し、等しい行を取得しようとしています。
http://vps10937.ovh.net/hyphenator/WorkingExample1.html (プラトン 1)
プラグインを呼び出すのはとても簡単です:
Hyphenator.config({
displaytogglebox : true,
minwordlength : 4
});
Hyphenator.run();
結果はきれいですが、これでは各行に CSS を適用してテキストをねじることはできません。hyphenator.js (ここをクリックしてソースコードを参照) ファイルを上から下まで調べましたが、テキストを行に分割するものは見つかりませんでした..
編集
github で見つけたプラグインを変更しました。これにより、希望する結果に近いものができるようになりました。しかし、まだいくつかの問題があります。
http://vps10937.ovh.net/hyphenator/WorkingExample1.html (プラトン 3)
1)スクリプトが非常に遅い。結果をキャッシュすることは可能ですか?
2) テキストが正当化されなくなったため、行が完全に等しくなりません...
3) Firefox でのみ動作します!!
ここにコードがあります http://vps10937.ovh.net/hyphenator/jquery.truncatelines.js
$.fn.truncateLines = function(options) {
options = $.extend($.fn.truncateLines.defaults, options);
return this.each(function(index, container) {
container = $(container);
var containerLineHeight = Math.ceil(parseFloat(container.css('line-height')));
var maxHeightFixed = containerLineHeight;
//var maxHeight = options.lines * containerLineHeight;
var truncated = false;
var truncatedText = $.trim(container.text());
//var overflowRatio = container.height() / maxHeight;
var oldTruncatedText; // verify that the text has been truncated, otherwise you'll get an endless loop
var oldContainerHeight;
textArray= new Array();
jQuery(document.body).append('<p class="paragraphProvisory1" style="display: none;"></p>');
jQuery(document.body).append('<p class="paragraphProvisory2" style="display: none;"></p>');
while (container.height() > 0 && oldTruncatedText != truncatedText) {
if(oldContainerHeight!=container.height()){
truncatedTextTest = truncatedText;
jQuery('.paragraphProvisory1').text(truncatedTextTest);
//11nd line
if(container.height()==containerLineHeight*11){
createLine(10);
}
//10nd line
if(container.height()==containerLineHeight*10){
createLine(9);
}
//9nd line
if(container.height()==containerLineHeight*9){
createLine(8);
}
//8nd line
if(container.height()==containerLineHeight*8){
createLine(7);
}
//7nd line
if(container.height()==containerLineHeight*7){
createLine(6);
}
//6nd line
if(container.height()==containerLineHeight*6){
createLine(5);
}
//5nd line
if(container.height()==containerLineHeight*5){
createLine(4);
}
//4nd line
if(container.height()==containerLineHeight*4){
createLine(3);
}
//3nd line
if(container.height()==containerLineHeight*3){
createLine(2);
}
//2nd line
if(container.height()==containerLineHeight*2){
createLine(1);
}
//1st line
if(container.height()==containerLineHeight*1){
textArray[0]= "<div class='line1'>"+truncatedTextTest+"</div>";
}
}
oldTruncatedText = truncatedText;
oldContainerHeight = container.height()
truncatedText = truncatedText.replace(/\s.[^\s]*\s?$/, ''); // remove last word
container.text(truncatedText);
}
jQuery('.platon3').text('');
jQuery.each(textArray, function(i) {
jQuery('.platon3').append(textArray[i]);
});
});
};
function createLine(rowNumber){
var oldTruncatedTextTest;
var row = 0;
positionLeft = rowNumber * 10;
rowNumber++;
jQuery('.paragraphProvisory2').text(truncatedTextTest);
containerTest = $('.paragraphProvisory2');
while (containerTest.height() > 20 && oldTruncatedTextTest != truncatedTextTest) {
row++;
oldTruncatedTextTest = truncatedTextTest;
truncatedTextTest = truncatedTextTest.substr(truncatedTextTest.indexOf(" ") + 1);
jQuery('.paragraphProvisory2').text(truncatedTextTest);
if(containerTest.height()==20){
textArray[rowNumber]= "<div class='line"+rowNumber+"' style='position: relative; left: -"+positionLeft+"px;'>"+truncatedTextTest+"</div>";
}
}
};