نمونه پایه


                                <div class="card card-custom">
                                    <div class="card-header">
                                        <h3 class="card-title">
                                            نمونه پایه
                                        </h3>
                                    </div>
                                    <div class="card-body">
                                        <textarea id="kt-tinymce-1" name="kt-tinymce-1" class="tox-target">
                                            <h1>Quick and Simple TinyMCE 5 Integration</h1>
                                            <p>Here goes the&nbsp;<a href="#">Minitial content of the editor</a>. لورم ایپسوم dummy text of the&nbsp;<em>printing and typesetting</em>&nbsp;industry.</p>
                                            <blockquote>Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled. لورم ایپسوم dummy text of the printing and typesetting industry.</blockquote>
                                            <h3 style="text-align: right;">Flexible &amp; Powerful</h3>
                                            <p style="text-align: right;"><strong>Lorem Ipsum has been the industry's</strong>&nbsp;standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled.</p>
                                            <ul>
                                                <li>لیست item 1</li>
                                                <li>لیست item 2</li>
                                                <li>لیست item 3</li>
                                                <li>لیست item 4</li>
                                            </ul>
                                        </textarea>
                                    </div>
                                </div>
    			        	

                            // کلاس definition

                            var KTTinymce = function () {
                                // خصوصی functions
                                var demos = function () {
                                    tinymce.init({
                                        selector: '#kt-tinymce-1',
                                        toolbar: false,
                                        statusbar: false
                                    });
                                }

                                return {
                                    // public functions
                                    init: function() {
                                        demos();
                                    }
                                };
                            }();

                            // Initialization
                            jQuery(document).ready(function() {
                                KTTinymce.init();
                            });
    			        	

TinyMCE با نوار ابزار


                                <div class="card card-custom">
                                    <div class="card-header">
                                        <h3 class="card-title">
                                            TinyMCE با نوار ابزار
                                        </h3>
                                    </div>
                                    <div class="card-body">
                                        <textarea id="kt-tinymce-2" name="kt-tinymce-2" class="tox-target">
                                            <h1>Quick and Simple TinyMCE 5 Integration</h1>
                                            <p>Here goes the&nbsp;<a href="#">Minitial content of the editor</a>. لورم ایپسوم dummy text of the&nbsp;<em>printing and typesetting</em>&nbsp;industry.</p>
                                            <blockquote>Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled. لورم ایپسوم dummy text of the printing and typesetting industry.</blockquote>
                                            <h3 style="text-align: right;">Flexible &amp; Powerful</h3>
                                            <p style="text-align: right;"><strong>Lorem Ipsum has been the industry's</strong>&nbsp;standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled.</p>
                                            <ul>
                                                <li>لیست item 1</li>
                                                <li>لیست item 2</li>
                                                <li>لیست item 3</li>
                                                <li>لیست item 4</li>
                                            </ul>
                                        </textarea>
                                    </div>
                                </div>
    			        	

                            // کلاس definition

                            var KTTinymce = function () {
                                // خصوصی functions
                                var demos = function () {
                                    tinymce.init({
                                        selector: '#kt-tinymce-2'
                                    });
                                }

                                return {
                                    // public functions
                                    init: function() {
                                        demos();
                                    }
                                };
                            }();

                            // Initialization
                            jQuery(document).ready(function() {
                                KTTinymce.init();
                            });
    				        

TinyMCE با پلاگین ها


                                <div class="card card-custom">
                                    <div class="card-header">
                                        <h3 class="card-title">
                                            TinyMCE با پلاگین ها
                                        </h3>
                                    </div>
                                    <div class="card-body">
                                        <div class="tinymce">
                                            <textarea id="kt-tinymce-3" name="kt-tinymce-3" class="tox-target">
                                                <h1>Quick and Simple TinyMCE 5 Integration</h1>
                                                <p>Here goes the&nbsp;<a href="#">Minitial content of the editor</a>. لورم ایپسوم dummy text of the&nbsp;<em>printing and typesetting</em>&nbsp;industry.</p>
                                                <blockquote>Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled. لورم ایپسوم dummy text of the printing and typesetting industry.</blockquote>
                                                <h3 style="text-align: right;">Flexible &amp; Powerful</h3>
                                                <p style="text-align: right;"><strong>Lorem Ipsum has been the industry's</strong>&nbsp;standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled.</p>
                                                <ul>
                                                    <li>لیست item 1</li>
                                                    <li>لیست item 2</li>
                                                    <li>لیست item 3</li>
                                                    <li>لیست item 4</li>
                                                </ul>
                                            </textarea>
                                        </div>
                                    </div>
                                </div>
    			        	

                            // کلاس definition

                            var KTTinymce = function () {
                                // خصوصی functions
                                var demos = function () {
                                    tinymce.init({
                                        selector: '#kt-tinymce-3',
                                        toolbar: 'advlist | autolink | link image | lists charmap | print preview',
                                        plugins : 'advlist autolink link image lists charmap print preview'
                                    });
                                }

                                return {
                                    // public functions
                                    init: function() {
                                        demos();
                                    }
                                };
                            }();

                            // Initialization
                            jQuery(document).ready(function() {
                                KTTinymce.init();
                            });
    			        	

TinyMCE با منوبار پنهان


                                <div class="card card-custom">
                                    <div class="card-header">
                                        <h3 class="card-title">
                                            TinyMCE با منوبار پنهان
                                        </h3>
                                    </div>
                                    <div class="card-body">
                                        <div class="tinymce">
                                            <textarea id="kt-tinymce-4" name="kt-tinymce-4" class="tox-target">
                                                <h1>Quick and Simple TinyMCE 5 Integration</h1>
                                                <p>Here goes the&nbsp;<a href="#">Minitial content of the editor</a>. لورم ایپسوم dummy text of the&nbsp;<em>printing and typesetting</em>&nbsp;industry.</p>
                                                <blockquote>Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled. لورم ایپسوم dummy text of the printing and typesetting industry.</blockquote>
                                                <h3 style="text-align: right;">Flexible &amp; Powerful</h3>
                                                <p style="text-align: right;"><strong>Lorem Ipsum has been the industry's</strong>&nbsp;standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled.</p>
                                                <ul>
                                                    <li>لیست item 1</li>
                                                    <li>لیست item 2</li>
                                                    <li>لیست item 3</li>
                                                    <li>لیست item 4</li>
                                                </ul>
                                            </textarea>
                                        </div>
                                    </div>
                                </div>
    			        	

                            // کلاس definition

                            var KTTinymce = function () {
                                // خصوصی functions
                                var demos = function () {
                                    tinymce.init({
                                        selector: '#kt-tinymce-4',
                                        menubar: false,
                                        toolbar: ['styleselect fontselect fontsizeselect',
                                            'undo redo | cut copy paste | bold italic | link image | alignleft aligncenter alignright alignjustify',
                                            'bullist numlist | outdent indent | blockquote subscript superscript | advlist | autolink | lists charmap | print preview |  code'],
                                        plugins : 'advlist autolink link image lists charmap print preview code'
                                    });
                                }

                                return {
                                    // public functions
                                    init: function() {
                                        demos();
                                    }
                                };
                            }();

                            // Initialization
                            jQuery(document).ready(function() {
                                KTTinymce.init();
                            });
    				        

سبد خرید

iBlender بهترین وسایل آشپزخانه در سال 2020
دلار 350 5
پاک کننده هوشمند ابزار هوشمند برای پخت و پز
650دلار 4
دوربین دوربین حرفه ای برای عکس
150دلار 3
چاپگر 4D ساخت اشیاء منحصر به فرد
دلار 1450 7
موشن ابزار انیمیشن ایده آل
650دلار 7
پیام های سیستم
نویسندگان برتر موفق ترین ها
+82دلار
نویسندگان محبوب موفق ترین ها
+280دلار
کاربران جدید موفق ترین ها
+4500دلار
فعال مشتریان موفق ترین ها
+4500دلار
تم پرفروش موفق ترین ها
+4500دلار
اعلان ها
اهداف دیگر موعد 2 روز
+28%
+50%
بهترین محصول موعد 2 روز
+8%
مراقبت از مشتری
گزارشات
اعضا

انتخاب نسخه ی نمایشی

نسخه ی نمایشی 1
نسخه ی نمایشی 2
نسخه ی نمایشی 3
نسخه ی نمایشی 4
نسخه ی نمایشی 5
نسخه ی نمایشی 6
نسخه ی نمایشی 7
نسخه ی نمایشی 8
نسخه ی نمایشی 9
نسخه ی نمایشی 10
نسخه ی نمایشی 11
نسخه ی نمایشی 12
نسخه ی نمایشی 13
نسخه ی نمایشی 14
نسخه ی نمایشی 15
نسخه ی نمایشی 16
نسخه ی نمایشی 17
نسخه ی نمایشی 18
نسخه ی نمایشی 19
نسخه ی نمایشی 20
نسخه ی نمایشی 21
نسخه ی نمایشی 22
نسخه ی نمایشی 23
نسخه ی نمایشی 24
نسخه ی نمایشی 25
نسخه ی نمایشی 26
نسخه ی نمایشی 27
نسخه ی نمایشی 28
نسخه ی نمایشی 29
نسخه ی نمایشی 30