подпишись на нашу рассылку или расскажи о своих идеях
Important! By submitting your details for registration, you agree
with the conditions of storage and processing of personal data (look).
let fullText; // variable to hold_cc781905-5cde-3194 -bb3b-136bad5cf58d_the full text
let shortText; // variable to hold_cc781905-5cde-3194 -bb3b-136bad5cf58d_the short version of the text
// За полной документацией по API,_cc781905-5cde-3194- bb3b-136bad5cf58d_включая примеры кода, зайдите на http://wix. to/94BuAAs
$w.onReady(function () {
_cc781905- 5cde-3194-bb3b-136bad5cf58d_ //_cc781905 -5cde-3194-bb3b-136bad5cf58d_how many characters to include in_cc781905-5cde -3194-bb3b-136bad5cf58d_the shortened version
_cc781905- 5cde-3194-bb3b-136bad5cf58d_ const_cc781905-5cde- 3194-bb3b-136bad5cf58d_shortTextLength = 233;
_cc781905- 5cde-3194-bb3b-136bad5cf58d_ //_cc781905 -5cde-3194-bb3b-136bad5cf58d_read the full text and store_cc781905-5cde -3194-bb3b-136bad5cf58d_it in the fullText variable
_cc781905- 5cde-3194-bb3b-136bad5cf58d_ fullText_cc781905-5cde- 3194-bb3b-136bad5cf58d_= $w("#text48").text;
_cc781905- 5cde-3194-bb3b-136bad5cf58d_ //_cc781905 -5cde-3194-bb3b-136bad5cf58d_grab the number of characters defined_cc781905-5cde -3194-bb3b-136bad5cf58d_in shortTextLength and store them in_cc781905-5cde-3194 -bb3 b-136bad5cf58d_the shortText variable
_cc781905- 5cde-3194-bb3b-136bad5cf58d_ shortText_cc781905-5cde- 3194-bb3b-136bad5cf58d_= fullText.substr(0, shortTextLength) + " ...";
_cc781905- 5cde-3194-bb3b-136bad5cf58d_ //_cc781905 -5cde-3194-bb3b-136bad5cf58d_set the contents of the text_cc781905-5cde -3194-bb3b-136bad5cf58d_element to be the short text
_cc781905- 5cde-3194-bb3b-136bad5cf58d_ $w( "#text48").text = shortText;
});
_cc781905- 5cde-3194-bb3b-136bad5cf58d_ //TODO : write your page related code here ...
export function button9_click(event) {
// check_cc781905-5cde-3194-bb3b -136bad5cf58d_the contents of the text element
if ($w("#text48").text === shortText) {
// if currently displaying_cc781905-5cde-3194-bb3b -136bad5cf58d_short text, display the full text
$w("#text48").text = fullText;
$w("#button9").label = "свернуть";_cc781905 -5cde-3194-bb3b-136bad5cf58d_
} else {
// if currently displaying_cc781905-5cde-3194-bb3b -136bad5cf58d_full text, display the short text
$w("#text48").text = shortText;
$w("#button9").label = "читать_cc781905-5cde- 3194-bb3b-136bad5cf58d_next...";
}
}