Kubayar

Chat List

Show All

  • A
  • Archie Parker

    Kalid is online

  • Alfie Mason

    Taherah left 7 mins ago

  • AharlieKane

    Sami is online

  • Athan Jacoby

    Nargis left 30 mins ago

  • B
  • Bashid Samim

    Rashid left 50 mins ago

  • Breddie Ronan

    Kalid is online

  • Ceorge Carson

    Taherah left 7 mins ago

  • D
  • Darry Parker

    Sami is online

  • Denry Hunter

    Nargis left 30 mins ago

  • J
  • Jack Ronan

    Rashid left 50 mins ago

  • Jacob Tucker

    Kalid is online

  • James Logan

    Taherah left 7 mins ago

  • Joshua Weston

    Sami is online

  • O
  • Oliver Acker

    Nargis left 30 mins ago

  • Oscar Weston

    Rashid left 50 mins ago

Chat with Khelesh

Online

Hi, how are you samim? 8:40 AM, Today
Hi Khalid i am good tnx how about you? 8:55 AM, Today
I am good too, thank you for your chat template 9:00 AM, Today
You are welcome 9:05 AM, Today
I am looking for your next templates 9:07 AM, Today
Ok, thank you have a good day 9:10 AM, Today
Bye, see you 9:12 AM, Today
Hi, how are you samim? 8:40 AM, Today
Hi Khalid i am good tnx how about you? 8:55 AM, Today
I am good too, thank you for your chat template 9:00 AM, Today
You are welcome 9:05 AM, Today
I am looking for your next templates 9:07 AM, Today
Ok, thank you have a good day 9:10 AM, Today
Bye, see you 9:12 AM, Today
Notications

Show All

  • SEVER STATUS
  • KK
    David Nester Birthday

    Today

  • SOCIAL
  • RU
    Perfection Simplified

    Jame Smith commented on your status

  • SEVER STATUS
  • AU
    AharlieKane

    Sami is online

  • MO
    Athan Jacoby

    Nargis left 30 mins ago

Notes

Add New Nots

  • New order placed..

    10 Aug 2020

  • Youtube, a video-sharing website..

    10 Aug 2020

  • john just buy your product..

    10 Aug 2020

  • Athan Jacoby

    10 Aug 2020

Draggable Basic

Drag me around


	<div id="draggable" class="ui-widget-content">
	<p>Drag me around</p>
  </div>


	<script>
	$( "#draggable" ).draggable();

	</script>



	border: 1px solid var(--border);
    background: var(--rgba-primary-1);
    width: 200px;
    height: 200px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 8px;
    box-shadow: rgba(90, 69, 170, 0.09) 0px 8px 24px;
    color: var(--primary);


Custom container

Drag me around



	<div id="draggable-1" class="ui-widget-content">
	<p>Drag me around</p>
  </div>

	

	<script>
	$( "#draggable-1" ).draggable();

	</script>



border: 1px solid var(--border);
background: var(--rgba-primary-1);
width: 200px;
height: 200px;
text-align: center;
display: flex;
flex-direction: column;
justify-content: center;
border-radius: 8px;
box-shadow: rgba(90, 69, 170, 0.09) 0px 8px 24px;
color: var(--primary);
									
									
									
Blocked axis

I can be dragged only vertically

I can be dragged only horizontally


	<div id="draggable-2" class="ui-widget-content">
	<p>Drag me around</p>
  </div>
  <div id="draggable-3" class="ui-widget-content">
	<p>Drag me around</p>
  </div>

	


	<script>
	$( "#draggable-2" ).draggable({ axis: "y" });
	$( "#draggable-3" ).draggable({ axis: "x" });
	</script>



border: 1px solid var(--border);
background: var(--rgba-primary-1);
width: 200px;
height: 200px;
text-align: center;
display: flex;
flex-direction: column;
justify-content: center;
border-radius: 8px;
box-shadow: rgba(90, 69, 170, 0.09) 0px 8px 24px;
color: var(--primary);
									
									
									

Drag me around


<div id="draggable-4" class="ui-widget-content">
<p>Drag me around</p>
</div>



	<script>
	$("#draggable-4").draggable("disable")
	</script>




border: 1px solid var(--border);
background: var(--rgba-primary-1);
width: 200px;
height: 200px;
text-align: center;
display: flex;
flex-direction: column;
justify-content: center;
border-radius: 8px;
box-shadow: rgba(90, 69, 170, 0.09) 0px 8px 24px;
color: var(--primary);
									
									
									
Sortable basic example
  • Item 1
  • Item 2
  • Item 3
  • Item 4
  • Item 5

	<ul id="sortable">
	<li class="ui-state-default">Item 1</li>
	<li class="ui-state-default">Item 2</li>
	<li class="ui-state-default">Item 3</li>
	<li class="ui-state-default">Item 4</li>
	<li class="ui-state-default">Item 5</li>
	
	</ul>



	<script>
	$( "#sortable" ).sortable({
		revert: true
	  });
	</script>




border: 1px solid var(--border);
background: var(--rgba-primary-1);
width: 200px;
height: 200px;
text-align: center;
display: flex;
flex-direction: column;
justify-content: center;
border-radius: 8px;
box-shadow: rgba(90, 69, 170, 0.09) 0px 8px 24px;
color: var(--primary);
									
									
									
Sortable Grid
Item 1
Item 2
Item 3
Item 4
Item 5
Item 6
Item 7
Item 8
Item 9

	<div id="sortable-grid">
	<div class="grid-item">Item 1</div>
	<div class="grid-item">Item 2</div>
	<div class="grid-item">Item 3</div>
	<div class="grid-item">Item 4</div>
	<div class="grid-item">Item 5</div>
	<div class="grid-item">Item 6</div>
	<div class="grid-item">Item 7</div>
	<div class="grid-item">Item 8</div>
	<div class="grid-item">Item 9</div>

	</div>


	

	<script>
	const sortableGrid = document.getElementById('sortable-grid');
		new Sortable(sortableGrid, {
		animation: 150,
		ghostClass: 'sortable-ghost',
		swapThreshold: 0.5,
		draggable: '.grid-item',
		handle: '.grid-item'
		});



border: 1px solid var(--border);
background: var(--rgba-primary-1);
width: 200px;
height: 200px;
text-align: center;
display: flex;
flex-direction: column;
justify-content: center;
border-radius: 8px;
box-shadow: rgba(90, 69, 170, 0.09) 0px 8px 24px;
color: var(--primary);